<feed xmlns='http://www.w3.org/2005/Atom'>
<title>auditory.vim, branch v0.1.3</title>
<subtitle>vim interface sounds</subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/auditory.vim/'/>
<entry>
<title>Increase version to v0.1.3</title>
<updated>2015-11-24T04:57:13+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2015-11-24T04:57:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/auditory.vim/commit/?id=7f9f8c4b72126d599f76452e91450d8a6313dff4'/>
<id>7f9f8c4b72126d599f76452e91450d8a6313dff4</id>
<content type='text'>
* Update CHANGELOG with latest updates
* Update version string in docs
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Update CHANGELOG with latest updates
* Update version string in docs
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'fix-errors-turning-AuditoryOn-and-AuditoryOff-twice'</title>
<updated>2015-11-24T04:53:49+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2015-11-24T04:53:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/auditory.vim/commit/?id=1df8b5a6629c84714c5807d6c06e631b171b9c79'/>
<id>1df8b5a6629c84714c5807d6c06e631b171b9c79</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: Prevent double `AuditoryOn` &amp; `AuditoryOff`</title>
<updated>2015-11-24T04:53:37+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2015-11-24T04:48:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/auditory.vim/commit/?id=24f334fa25c736ccfd6bbea337434fba759eded4'/>
<id>24f334fa25c736ccfd6bbea337434fba759eded4</id>
<content type='text'>
Previously executing `:AuditoryOn` and `:AuditoryOff` would always do
the thing they're supposed to do regardless of whether Auditory was
already on or off.

This caused errors because things got messed up when trying to
double assign the mappings and double unmap the mappings.

Now check for the status of the `g:auditory_on` flag before turning
Auditory on or off.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previously executing `:AuditoryOn` and `:AuditoryOff` would always do
the thing they're supposed to do regardless of whether Auditory was
already on or off.

This caused errors because things got messed up when trying to
double assign the mappings and double unmap the mappings.

Now check for the status of the `g:auditory_on` flag before turning
Auditory on or off.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'fix-G-mapping'</title>
<updated>2015-11-24T04:52:39+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2015-11-24T04:52:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/auditory.vim/commit/?id=29b34c5e0b48428b81240bf6b49c2845885ef32a'/>
<id>29b34c5e0b48428b81240bf6b49c2845885ef32a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>TODO Update: fixed `G` mapping</title>
<updated>2015-11-24T04:43:04+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2015-11-24T04:43:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/auditory.vim/commit/?id=b4ce35770716bcf2c43fd27c53a2165c1741c850'/>
<id>b4ce35770716bcf2c43fd27c53a2165c1741c850</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix normal mode `G` mapping</title>
<updated>2015-11-24T04:39:17+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2015-11-24T04:39:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/auditory.vim/commit/?id=ffa7c57008a7ff501de0bd61d1c8e4b9ad23e28f'/>
<id>ffa7c57008a7ff501de0bd61d1c8e4b9ad23e28f</id>
<content type='text'>
Pressing `G` would bring the cursor to the first line in the buffer
instead of the last line in the buffer because the count in the mapping
was always `v:count1`. This meant that the `G` mapping behaved like `1G`
when no count was specified.

This change fixes the `G` mapping to use `v:count` so that it goes to
the last line in the buffer as expected.

We also add support for arbitrary mappings to choose whether they want
to be `v:count` or `v:count1` depending on what value is specified in
the mapping dict.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Pressing `G` would bring the cursor to the first line in the buffer
instead of the last line in the buffer because the count in the mapping
was always `v:count1`. This meant that the `G` mapping behaved like `1G`
when no count was specified.

This change fixes the `G` mapping to use `v:count` so that it goes to
the last line in the buffer as expected.

We also add support for arbitrary mappings to choose whether they want
to be `v:count` or `v:count1` depending on what value is specified in
the mapping dict.
</pre>
</div>
</content>
</entry>
<entry>
<title>TODO: Add task to fix n_G</title>
<updated>2015-08-18T17:52:20+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2015-08-18T17:52:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/auditory.vim/commit/?id=60dd7674aa2508160728896c80438149ca6b7139'/>
<id>60dd7674aa2508160728896c80438149ca6b7139</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Increase version to v0.1.2</title>
<updated>2015-08-17T00:54:21+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2015-08-17T00:54:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/auditory.vim/commit/?id=7b53531c3fe643fb115d3c6a87c5fb7a396b5871'/>
<id>7b53531c3fe643fb115d3c6a87c5fb7a396b5871</id>
<content type='text'>
* Update CHANGELOG
* Update version string in docs
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Update CHANGELOG
* Update version string in docs
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'add-docs'</title>
<updated>2015-08-17T00:53:22+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2015-08-17T00:53:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/auditory.vim/commit/?id=fc4d44da0c9b2b0f7b3cb067cf108a2451a5a0c2'/>
<id>fc4d44da0c9b2b0f7b3cb067cf108a2451a5a0c2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>CHANGELOG: Update with v0.1.1 information</title>
<updated>2015-08-17T00:50:37+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2015-08-17T00:50:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/auditory.vim/commit/?id=9a00436d776cef72ba2d77478b585bb38bf52e25'/>
<id>9a00436d776cef72ba2d77478b585bb38bf52e25</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
