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
|
|
|
|
2009-11-27 15:43:06 +01:00
|
|
|
Dependencies:
|
|
|
|
notmuch:
|
|
|
|
Naturally, it expects you have notmuch installed and configured.
|
|
|
|
|
2011-07-10 20:52:27 +02:00
|
|
|
sendmail:
|
|
|
|
To send mail, notmuch.vim uses sendmail as default. Most modern MTAs
|
|
|
|
provide a compatibility binary, and so should work well.
|
2009-11-27 15:43:06 +01:00
|
|
|
|
2009-11-23 15:28:40 +01:00
|
|
|
|
2009-11-19 03:18:24 +01:00
|
|
|
To install:
|
2009-11-19 03:03:51 +01:00
|
|
|
make install
|
|
|
|
|
2009-11-23 15:28:40 +01:00
|
|
|
|
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-27 22:47:39 +01:00
|
|
|
:NotMuch new to:bart@jukie.net 'subject:this is a test'
|
2009-11-19 03:18:24 +01:00
|
|
|
|
2009-11-23 15:28:40 +01:00
|
|
|
|
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
|
2009-11-27 22:47:39 +01:00
|
|
|
m - compose a new message
|
2009-11-22 05:14:53 +01:00
|
|
|
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:
|
2011-06-20 22:14:21 +02:00
|
|
|
<Space> - show the selected thread collapsing unmatched items
|
2009-11-28 00:02:05 +01:00
|
|
|
<Enter> - show the entire selected thread
|
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
|
2009-11-27 22:47:39 +01:00
|
|
|
m - compose a new message
|
2009-11-27 22:48:18 +01:00
|
|
|
r - reply to thread
|
2009-11-20 16:57:25 +01:00
|
|
|
s - enter search criteria
|
2009-11-27 15:43:06 +01:00
|
|
|
,s - 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
|
2009-11-20 16:57:25 +01:00
|
|
|
+ - add tag(s) to selected message
|
|
|
|
- - remove tag(s) from selected message
|
|
|
|
= - refresh display
|
2009-11-22 06:29:57 +01:00
|
|
|
? - reveal the thread ID of what's under cursor
|
2009-11-22 06:10:27 +01:00
|
|
|
^] - 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-27 15:43:06 +01:00
|
|
|
<Space> - mark read, archive, go to next matching message
|
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
|
2009-11-27 23:43:01 +01:00
|
|
|
i - toggle folding of signatures
|
2009-11-27 22:47:39 +01:00
|
|
|
m - compose a new message
|
2009-11-27 22:52:00 +01:00
|
|
|
r - reply to the message
|
2009-11-27 23:43:01 +01:00
|
|
|
s - enter search criteria
|
2009-11-20 20:18:42 +01:00
|
|
|
q - return to search display
|
2009-11-22 06:29:57 +01:00
|
|
|
? - reveal the message and thread IDs of what's under cursor
|
2009-11-22 06:10:27 +01:00
|
|
|
^] - search using word under cursor
|
2009-11-19 03:18:24 +01:00
|
|
|
|
2009-11-27 22:47:39 +01:00
|
|
|
[notmuch-compose]
|
|
|
|
When you're writing an email, you're in this mode.
|
|
|
|
|
|
|
|
Insert-mode keybindings:
|
|
|
|
<Tab> - go to the next header line
|
|
|
|
|
|
|
|
Normal-mode keybindings:
|
|
|
|
<Tab> - go to the next header line
|
|
|
|
,s - send this message
|
|
|
|
,q - abort this message
|
|
|
|
|