vim: add support to mark as read in search view

Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
This commit is contained in:
Felipe Contreras 2010-12-09 21:15:43 +02:00 committed by Jameson Graef Rollins
parent e236142f03
commit 06a292018d

View file

@ -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