<feed xmlns='http://www.w3.org/2005/Atom'>
<title>auditory.vim, branch v0.0.2</title>
<subtitle>vim interface sounds</subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/auditory.vim/'/>
<entry>
<title>Update TODO</title>
<updated>2014-11-11T03:11:12+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2014-11-11T03:11:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/auditory.vim/commit/?id=40622abb6ebb9a50de65a359974b30992ef7974a'/>
<id>40622abb6ebb9a50de65a359974b30992ef7974a</id>
<content type='text'>
Mark `dd` task complete.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Mark `dd` task complete.
</pre>
</div>
</content>
</entry>
<entry>
<title>Update TODO</title>
<updated>2014-11-11T03:04:17+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2014-11-11T03:04:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/auditory.vim/commit/?id=688cbefe2834c9da6ee0f3ba77aa68c2493dede3'/>
<id>688cbefe2834c9da6ee0f3ba77aa68c2493dede3</id>
<content type='text'>
Add a note to map 'D' for deleting to the end of a line.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add a note to map 'D' for deleting to the end of a line.
</pre>
</div>
</content>
</entry>
<entry>
<title>autoload/auditory.vim: Add `dd` support</title>
<updated>2014-11-11T03:00:07+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2014-11-11T03:00:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/auditory.vim/commit/?id=6423dbd2dcef8607e0c0ec15f0650d86daea38d5'/>
<id>6423dbd2dcef8607e0c0ec15f0650d86daea38d5</id>
<content type='text'>
Add support for deleting a line using `dd`. Previously this didn't work
because I created a custom operator for the `d` command.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add support for deleting a line using `dd`. Previously this didn't work
because I created a custom operator for the `d` command.
</pre>
</div>
</content>
</entry>
<entry>
<title>Update TODO</title>
<updated>2014-11-10T21:33:54+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2014-11-10T21:33:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/auditory.vim/commit/?id=4466a22b924a919f732c9a45f0cca94b51b416ff'/>
<id>4466a22b924a919f732c9a45f0cca94b51b416ff</id>
<content type='text'>
Add some issues and ideas I thought about post-hackathon.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add some issues and ideas I thought about post-hackathon.
</pre>
</div>
</content>
</entry>
<entry>
<title>README: Add requirements section</title>
<updated>2014-11-09T23:26:27+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2014-11-09T23:25:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/auditory.vim/commit/?id=6b68ea2b9a611639306596886b6faf9ab9c67d7a'/>
<id>6b68ea2b9a611639306596886b6faf9ab9c67d7a</id>
<content type='text'>
Let people know that this plugin requires mplayer. Note that we don't
currently check for it in the plugin, but we should.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Let people know that this plugin requires mplayer. Note that we don't
currently check for it in the plugin, but we should.
</pre>
</div>
</content>
</entry>
<entry>
<title>README: Add a section on contributing</title>
<updated>2014-11-09T17:30:01+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2014-11-09T17:29:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/auditory.vim/commit/?id=3077eb4d432c16f88322d2003cb744811dd394a7'/>
<id>3077eb4d432c16f88322d2003cb744811dd394a7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>autoload/auditory.vim: Add custom `d` operator</title>
<updated>2014-11-09T17:14:44+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2014-11-09T17:14:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/auditory.vim/commit/?id=723053afd9e28b6e43e6461438ca305f9966f410'/>
<id>723053afd9e28b6e43e6461438ca305f9966f410</id>
<content type='text'>
Create a custom delete operator that plays the delete sound.

NOTES:
* Doesn't do `dd`
* I just looked at the tcomment plugin source and realised that I should
  be using plugin mappings so these can be more easily overridden. Make
  a note to look into that.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Create a custom delete operator that plays the delete sound.

NOTES:
* Doesn't do `dd`
* I just looked at the tcomment plugin source and realised that I should
  be using plugin mappings so these can be more easily overridden. Make
  a note to look into that.
</pre>
</div>
</content>
</entry>
<entry>
<title>Update TODO</title>
<updated>2014-11-09T16:39:52+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2014-11-09T16:39:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/auditory.vim/commit/?id=71bda7ca55622fcf1b938e5255a64e9f714829e8'/>
<id>71bda7ca55622fcf1b938e5255a64e9f714829e8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>autoload/auditory.vim: Add new Cantina audio files</title>
<updated>2014-11-09T16:06:04+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2014-11-09T16:06:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/auditory.vim/commit/?id=36adb0b18d5bd1c875e226fa069039335b538df5'/>
<id>36adb0b18d5bd1c875e226fa069039335b538df5</id>
<content type='text'>
Add Spencer's new Cantina audio files to the cantina list. The new audio
files are shorter individually (that's why there are more of them). This
makes it easier to play the Cantina song at faster or slower ranges of
tempos.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add Spencer's new Cantina audio files to the cantina list. The new audio
files are shorter individually (that's why there are more of them). This
makes it easier to play the Cantina song at faster or slower ranges of
tempos.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add README &amp; LICENSE</title>
<updated>2014-11-09T16:01:24+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2014-11-09T16:01:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/auditory.vim/commit/?id=f5e4deff75976c050447c425f50cbae8e70b57be'/>
<id>f5e4deff75976c050447c425f50cbae8e70b57be</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
