From: Felipe Contreras <felipe.contreras@gmail.com> Date: Thu, 9 Dec 2010 19:15:43 +0000 (+0200) Subject: vim: add support to mark as read in search view X-Git-Tag: debian/0.6_254~78 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=06a292018d0fbe3198468571e13e3d230ced3354;p=notmuch.git vim: add support to mark as read in search view Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com> --- diff --git a/vim/plugin/notmuch.vim b/vim/plugin/notmuch.vim index 05c21d3c..fca48568 100644 --- a/vim/plugin/notmuch.vim +++ b/vim/plugin/notmuch.vim @@ -120,6 +120,7 @@ let g:notmuch_search_maps = { \ '<Space>': ':call <SID>NM_search_show_thread(0)<CR>', \ '<Enter>': ':call <SID>NM_search_show_thread(1)<CR>', \ '<C-]>': ':call <SID>NM_search_expand(''<cword>'')<CR>', + \ 'I': ':call <SID>NM_search_mark_read_thread()<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>', @@ -310,6 +311,11 @@ function! s:NM_search_edit() endif endfunction +function! s:NM_search_mark_read_thread() + call <SID>NM_tag([], ['-unread']) + norm j +endfunction + function! s:NM_search_archive_thread() call <SID>NM_tag([], ['-inbox']) norm j