notmuch/vim/README

63 lines
2 KiB
Text
Raw Normal View History

2009-11-19 03:03:51 +01:00
This directory contains a vim script that allows reading notmuch mail
through vim.
2009-11-19 03:18:24 +01:00
NOTE: this is a work in progress. Patches welcome. <bart@jukie.net>
2009-11-19 03:03:51 +01:00
The vim interface makes use of the git-diff.vim syntax file which is
available from
http://github.com/motemen/git-vim/blob/master/syntax/git-diff.vim
2009-11-19 03:18:24 +01:00
To install:
2009-11-19 03:03:51 +01:00
make install
2009-11-19 03:03:51 +01:00
To run:
vim -c ':NotMuch'
2009-11-19 03:18:24 +01:00
from vim:
:NotMuch
2009-11-19 03:18:24 +01:00
Buffer types:
2009-11-22 04:24:54 +01:00
[notmuch-folders]
Folder list, or technically a list of saved searches.
Keybindings:
<Enter> - show the selected search
s - enter search criteria
= - refresh display
2009-11-22 04:24:54 +01:00
2009-11-19 03:18:24 +01:00
[notmuch-search]
You are presented with the search results when you run :NotMuch.
Keybindings:
<Enter> - show the selected message
2009-11-20 17:13:49 +01:00
a - archive message (remove inbox tag)
2009-11-20 18:05:43 +01:00
f - filter the current search terms
2009-11-20 18:16:32 +01:00
o - toggle search screen order
s - enter search criteria
es - alter search criteria
2009-11-22 04:24:54 +01:00
t - filter the current search terms with tags
q - return to folder display, or undo filter
+ - add tag(s) to selected message
- - remove tag(s) from selected message
= - refresh display
? - reveal the thread ID of what's under cursor
^] - search using word under cursor
2009-11-19 03:18:24 +01:00
[notmuch-show]
This is the display of the message.
Keybindings:
2009-11-20 07:35:33 +01:00
^n - next message
2009-11-20 21:23:02 +01:00
^p - previous message
2009-11-20 20:18:42 +01:00
b - toggle folding of message bodies
c - toggle folding of citations
h - toggle folding of extra header lines
s - toggle folding of signatures
q - return to search display
? - reveal the message and thread IDs of what's under cursor
^] - search using word under cursor
2009-11-19 03:18:24 +01:00