diff options
author | Felipe Contreras <felipe.contreras@gmail.com> | 2010-06-05 14:12:39 +0300 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2010-11-08 10:00:18 -0800 |
commit | 5a8903f05a10a9d010ca4d7302a58cd6520a112d (patch) | |
tree | 5c85ab277a26c445c8f675185a05bed1c548ef9d /vim/plugin | |
parent | c639ffae1e3959252b2a3fca13d3213c27e14b85 (diff) |
vim: add option to mark as read + archive
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Diffstat (limited to 'vim/plugin')
-rw-r--r-- | vim/plugin/notmuch.vim | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/vim/plugin/notmuch.vim b/vim/plugin/notmuch.vim index 01ee10f8..968c4c16 100644 --- a/vim/plugin/notmuch.vim +++ b/vim/plugin/notmuch.vim @@ -118,6 +118,7 @@ let g:notmuch_search_maps = { \ '<Enter>': ':call <SID>NM_search_show_thread(1)<CR>', \ '<C-]>': ':call <SID>NM_search_expand(''<cword>'')<CR>', \ 'a': ':call <SID>NM_search_archive_thread()<CR>', + \ 'A': ':call <SID>NM_search_mark_read_then_archive_thread()<CR>', \ 'f': ':call <SID>NM_search_filter()<CR>', \ 'm': ':call <SID>NM_new_mail()<CR>', \ 'o': ':call <SID>NM_search_toggle_order()<CR>', @@ -310,6 +311,11 @@ function! s:NM_search_archive_thread() norm j endfunction +function! s:NM_search_mark_read_then_archive_thread() + call <SID>NM_add_remove_tags([], '-', ['unread', 'inbox']) + norm j +endfunction + function! s:NM_search_filter() call <SID>NM_search_filter_helper('Filter: ', '', '') endfunction |