<feed xmlns='http://www.w3.org/2005/Atom'>
<title>notmuch/vim/notmuch.vim, branch debian/0.31.1-1</title>
<subtitle>thread-based email index, search, and tagging</subtitle>
<id>https://git.notmuchmail.org/git/notmuch/atom?h=debian%2F0.31.1-1</id>
<link rel='self' href='https://git.notmuchmail.org/git/notmuch/atom?h=debian%2F0.31.1-1'/>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/'/>
<updated>2015-01-23T17:18:54Z</updated>
<entry>
<title>VIM: Improve performance of folders_render</title>
<updated>2015-01-23T17:18:54Z</updated>
<author>
<name>Franz Fellner</name>
<email>alpine.art.de@gmail.com</email>
</author>
<published>2015-01-22T20:16:47Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=ce9f559b8642e0cc2eaffbf9dea9b3cbd46ee30d'/>
<id>urn:sha1:ce9f559b8642e0cc2eaffbf9dea9b3cbd46ee30d</id>
<content type='text'>
Simply use query.count_[messages,threads] instead of actually running
the query and using the count attribute of the result set.
</content>
</entry>
<entry>
<title>VIM: Respect exclude_tags specified in .notmuch-config</title>
<updated>2015-01-22T19:34:31Z</updated>
<author>
<name>Franz Fellner</name>
<email>alpine.art.de@gmail.com</email>
</author>
<published>2015-01-22T12:52:47Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=9d4ff29ad86e24d0cc3500ca1d0ef2ab91cde222'/>
<id>urn:sha1:9d4ff29ad86e24d0cc3500ca1d0ef2ab91cde222</id>
<content type='text'>
Exclude mails tagged with any tag specified in 'notmuch config get
search.exclude_tags' in folders list and search list.
</content>
</entry>
<entry>
<title>VIM: Make starting in 'insert' mode for compose optional</title>
<updated>2014-10-21T08:24:52Z</updated>
<author>
<name>Ian Main</name>
<email>imain@stemwinder.org</email>
</author>
<published>2014-10-01T17:11:28Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=4a1ccfedd99de3571d2630dc277ef5b80f9061f7'/>
<id>urn:sha1:4a1ccfedd99de3571d2630dc277ef5b80f9061f7</id>
<content type='text'>
This adds a variable to make starting in insert mode optional when
composing and replying to emails.  I found it unusual to be started in
insert mode so I thought I'd make it optional as others may find this as
well.

    Ian
</content>
</entry>
<entry>
<title>VIM: Use notmuch CLI for config</title>
<updated>2014-10-21T08:22:44Z</updated>
<author>
<name>Ian Main</name>
<email>imain@stemwinder.org</email>
</author>
<published>2014-10-02T23:47:15Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=e0ce86119cbae520728c6812c021315a885f52ce'/>
<id>urn:sha1:e0ce86119cbae520728c6812c021315a885f52ce</id>
<content type='text'>
This patch switches from reading .notmuch-config directly to using
the CLI the same way that emacs does it.  It actually uses less code
and is probably less error prone.

    Ian
</content>
</entry>
<entry>
<title>vim: improve the way messages are sent</title>
<updated>2014-05-02T21:00:22Z</updated>
<author>
<name>Felipe Contreras</name>
<email>felipe.contreras@gmail.com</email>
</author>
<published>2014-05-01T22:57:54Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=cc8c213bbc9572fa96c1b384225b69136a3fd0e4'/>
<id>urn:sha1:cc8c213bbc9572fa96c1b384225b69136a3fd0e4</id>
<content type='text'>
We want the proper encoding and content-type to be set when sending the
mail, but human-readable plain-text for composing. So split the code in
two parts: the presentation and the transport conversion.

This fixes an issue while sending non-ascii mails to strict servers; the
mail needs to be encoded.

Signed-off-by: Felipe Contreras &lt;felipe.contreras@gmail.com&gt;
</content>
</entry>
<entry>
<title>vim: make the html handler configurable</title>
<updated>2014-05-02T20:59:58Z</updated>
<author>
<name>Paul Roberts</name>
<email>pmr@stelo.org.uk</email>
</author>
<published>2014-05-01T22:57:53Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=468deca60c062b6b3085ff1de41647f41cd6abd1'/>
<id>urn:sha1:468deca60c062b6b3085ff1de41647f41cd6abd1</id>
<content type='text'>
Signed-off-by: Felipe Contreras &lt;felipe.contreras@gmail.com&gt;
</content>
</entry>
<entry>
<title>vim: fix count_threads variable check</title>
<updated>2014-05-02T20:59:38Z</updated>
<author>
<name>Felipe Contreras</name>
<email>felipe.contreras@gmail.com</email>
</author>
<published>2014-05-01T22:57:52Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=2fee62fd1fcaed5c9ec46daa4f24b33a2f310e83'/>
<id>urn:sha1:2fee62fd1fcaed5c9ec46daa4f24b33a2f310e83</id>
<content type='text'>
It never really worked; in Ruby only 'nil' and 'false' evaluate to
false, therefore the statement '0 : true ? false' returns true, so it
doesn't matter if notmuch_folders_count_threads = 0, count_threads would
be true.

We need to check specifically if the value is 1 or 0.

Signed-off-by: Felipe Contreras &lt;felipe.contreras@gmail.com&gt;
</content>
</entry>
<entry>
<title>vim: check compose is done on delete</title>
<updated>2013-11-20T13:23:30Z</updated>
<author>
<name>Felipe Contreras</name>
<email>felipe.contreras@gmail.com</email>
</author>
<published>2013-11-02T10:40:01Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=3d15ed9290013e31a743c20139da16c8ccaa2bb7'/>
<id>urn:sha1:3d15ed9290013e31a743c20139da16c8ccaa2bb7</id>
<content type='text'>
Not on unload, which happens when we switch buffers.

Signed-off-by: Felipe Contreras &lt;felipe.contreras@gmail.com&gt;
</content>
</entry>
<entry>
<title>vim: remove unnecessary buffer queue</title>
<updated>2013-11-20T13:23:30Z</updated>
<author>
<name>Felipe Contreras</name>
<email>felipe.contreras@gmail.com</email>
</author>
<published>2013-11-02T10:38:33Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=062a73b9312a4df84f61d1c998b365ceed92313b'/>
<id>urn:sha1:062a73b9312a4df84f61d1c998b365ceed92313b</id>
<content type='text'>
Vim handles the buffers just fine: when one is deleted, we go to the
previous one.

Signed-off-by: Felipe Contreras &lt;felipe.contreras@gmail.com&gt;
</content>
</entry>
<entry>
<title>vim: add wrapper for old variable names</title>
<updated>2013-11-20T13:23:30Z</updated>
<author>
<name>Felipe Contreras</name>
<email>felipe.contreras@gmail.com</email>
</author>
<published>2013-11-02T06:49:53Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=2c3623703f4bd1dbe1d5ca47c4bf55e208db12b2'/>
<id>urn:sha1:2c3623703f4bd1dbe1d5ca47c4bf55e208db12b2</id>
<content type='text'>
Signed-off-by: Felipe Contreras &lt;felipe.contreras@gmail.com&gt;
</content>
</entry>
</feed>
