aboutsummaryrefslogtreecommitdiffhomepage
path: root/vim
Commit message (Collapse)AuthorAge
* vim: use the full path for sendmailGravatar Uwe Kleine-König2011-07-16
| | | | | | ... as /usr/sbin isn't usually in user's PATH. Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
* vim: skip trailing slash for g:notmuch_compose_temp_file_dirGravatar Uwe Kleine-König2011-07-16
| | | | | | | | | | | | | | | | | | | | | With the trailing slash I get Error detected while processing function <SNR>10_NM_new_mail..<SNR>10_NM_cmd_compose..<SNR>10_NM_newComposeBuffer..<SNR>10_NM_newFileBuffer: line 3: E739: Cannot create directory: /home/ukleinek/.notmuch/compose/ when hitting 'm' to compose a new mail. strace shows: stat("/home/ukleinek/.notmuch/compose/", 0x7fffee314a10) = -1 ENOENT (No such file or directory) stat("/home/ukleinek/.notmuch/compose/", 0x7fffee314e30) = -1 ENOENT (No such file or directory) stat("/home/ukleinek/.notmuch/compose", 0x7fffee315270) = -1 ENOENT (No such file or directory) stat("/home/ukleinek/.notmuch", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 mkdir("/home/ukleinek/.notmuch/compose", 0755) = 0 mkdir("/home/ukleinek/.notmuch/compose/", 0755) = -1 EEXIST (File exists) so it seems vim's mkdir() isn't able to handle a trailing slash. Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
* vim: fix documentation that mailx isn't used anymoreGravatar Uwe Kleine-König2011-07-16
| | | | | | | | Since e7899b0 (vim: use sendmail directly) notmuch-vim uses sendmail directly. Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
* fix sum moar typos [error messages]Gravatar Pieter Praet2011-06-23
| | | | | | | | Various typo fixes in error messages within the source code. Signed-off-by: Pieter Praet <pieter@praet.org> Edited-by: Carl Worth <cworth@cworth.org> Restricted to just error messages.
* fix sum moar typos [comments in source code]Gravatar Pieter Praet2011-06-23
| | | | | | | | | | Various typo fixes in comments within the source code. Signed-off-by: Pieter Praet <pieter@praet.org> Edited-by: Carl Worth <cworth@cworth.org> Restricted to just source-code comments, (and fixed fix of "descriptios" to "descriptors" rather than "descriptions").
* fix sum moar typos [text files]Gravatar Pieter Praet2011-06-23
| | | | | | | | | Various typo fixes in auxiliary text files included with the source, (README, TODO, etc.). Signed-off-by: Pieter Praet <pieter@praet.org> Edited-by: Carl Worth <cworth@cworth.org> Restricted to just text files.
* vim: add delete commandsGravatar Felipe Contreras2011-05-31
| | | | Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
* vim: add support for delete in search viewGravatar Felipe Contreras2011-05-31
| | | | Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
* vim: add support to mark as read in search viewGravatar Felipe Contreras2011-05-31
| | | | Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
* vim: add support to mark as read in show viewGravatar Felipe Contreras2011-05-31
| | | | Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
* vim: parse 'from' addressGravatar Felipe Contreras2011-05-04
| | | | | | In order to pass it to sendmail. Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
* vim: use sendmail directlyGravatar Felipe Contreras2011-05-04
| | | | | | | | The problem with 'mailx' is that it's not standardized, and it doesn't allow the -f option, which is pretty important on many sendmail configurations. Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
* vim: add myself (Felipe Contreras) as contributorGravatar Felipe Contreras2011-05-04
| | | | Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
* vim: implement archive in show viewGravatar Felipe Contreras2011-05-04
| | | | Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
* vim: refactor tagging stuffGravatar Felipe Contreras2011-05-04
| | | | Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
* vim: Get user email address from notmuch config file.Gravatar Peter John Hartman2011-01-26
| | | | | | | Here's a bitty patch to the vim plugin; it now calculates the primary email of the user based on a call to notmuch config. There's still a lot of work that needs to get done on notmuch.vim, e.g., the ability to have multiple emails/accounts.
* vim: include own improved git-diff syntaxGravatar Felipe Contreras2010-11-08
| | | | | | The old one wasn't working at all on newer vims. Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
* vim: run(): optimize non-debug pathGravatar Felipe Contreras2010-11-08
| | | | Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
* vim: use mailx for sendingGravatar Felipe Contreras2010-11-08
| | | | | | | Possilby used by more systems, and besides the code wasn't really working properly anyway. Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
* vim: add option to mark as read + archiveGravatar Felipe Contreras2010-11-08
| | | | Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
* vim: remove add_remove_tags_on_screen()Gravatar Felipe Contreras2010-11-08
| | | | | | | It's not working properly; the current message is jumping around and the tags not really added/removed properly. Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
* vim: cleanup search syntaxGravatar Felipe Contreras2010-11-08
| | | | | | It was *sloooooow*. Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
* vim: cleanup search bufferGravatar Felipe Contreras2010-11-08
| | | | Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
* vim: add archive support from 'show'Gravatar Felipe Contreras2010-11-08
| | | | Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
* Fix typo in messageGravatar Ben Gamari2010-04-15
|
* Install vim plugin with vim-addonsGravatar martin f. krafft2010-01-21
| | | | Signed-off-by: martin f. krafft <madduck@debian.org>
* vim: preserve the 'show everything' flag when finding next/prev bufferGravatar Bart Trojanowski2009-12-03
| | | | | | | | | When show mode is invoked it could be displaying just the matched messages or everything. This flag is passed to NM_search_show_thread(). It is then stored in a buffer variable, b:nm_show_everything, and used for subsequent calls to NM_search_show_thread() triggered by <Space>, <C-n> and <C-p>. Signed-off-by: Bart Trojanowski <bart@jukie.net>
* vim: use notmuch show --entire-threadGravatar Bart Trojanowski2009-12-02
|
* vim: use <Space> more consistently in search viewGravatar Bart Trojanowski2009-11-27
| | | | | | In search view <Space> will show the thead, but folding messages that don't match the current search expression. Conversly, <Enter> always shows all messages in the thread.
* vim: make it possible to start a search in show modeGravatar Bart Trojanowski2009-11-27
|
* vim: don't toggle folds that are inside closed folds in show modeGravatar Bart Trojanowski2009-11-27
|
* vim: primitive reply to messageGravatar Bart Trojanowski2009-11-27
|
* vim: primitive reply to threadGravatar Bart Trojanowski2009-11-27
|
* vim: few compose mode updates, including READMEGravatar Bart Trojanowski2009-11-27
|
* vim: don't remove headers until after parsing themGravatar Bart Trojanowski2009-11-27
|
* vim: fix off-by-one error when removing header from message to send outGravatar Bart Trojanowski2009-11-27
|
* vim: generalize compose buffer function furtherGravatar Bart Trojanowski2009-11-27
|
* vim: have ,nmr just reload the plugin w/o restarting stateGravatar Bart Trojanowski2009-11-27
|
* vim: make it possible to replace NM_cobine_tags()Gravatar Bart Trojanowski2009-11-27
|
* vim: add a helper to combine tag search expressionsGravatar Bart Trojanowski2009-11-27
|
* vim: README updates and correctionsGravatar Bart Trojanowski2009-11-27
|
* vim: have '?' show search words in search modeGravatar Bart Trojanowski2009-11-27
|
* vim: cleanup error messagesGravatar Bart Trojanowski2009-11-27
|
* vim: fix regexp for cleaning search listGravatar Bart Trojanowski2009-11-27
|
* vim: force deleting buffersGravatar Bart Trojanowski2009-11-27
|
* vim: fix message parsing patternsGravatar Bart Trojanowski2009-11-27
| | | | if a message did not contain a trailing CR, we may not be able to match ^\f
* vim: implement sending with ,s from compose bufferGravatar Bart Trojanowski2009-11-27
|
* vim: store previous buffer number when starting to composeGravatar Bart Trojanowski2009-11-27
|
* vim: make sure headers begin with \wGravatar Bart Trojanowski2009-11-27
|
* vim: allow overriding how newBuffer is createdGravatar Bart Trojanowski2009-11-27
|