mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-12-22 09:24:54 +01:00
vim: include stubs for Tab-ing thorugh folds in show view
This commit is contained in:
parent
b740392b3d
commit
76dc061de3
1 changed files with 17 additions and 8 deletions
|
@ -128,6 +128,10 @@ let g:notmuch_show_maps = {
|
||||||
\ '<Space>': ':call <SID>NM_show_advance_marking_read_and_archiving()<CR>',
|
\ '<Space>': ':call <SID>NM_show_advance_marking_read_and_archiving()<CR>',
|
||||||
\ '\|': ':call <SID>NM_show_pipe_message()<CR>',
|
\ '\|': ':call <SID>NM_show_pipe_message()<CR>',
|
||||||
\
|
\
|
||||||
|
\ '<S-Tab>': ':call <SID>NM_show_previous_fold()<CR>',
|
||||||
|
\ '<Tab>': ':call <SID>NM_show_next_fold()<CR>',
|
||||||
|
\ '<Enter>': ':call <SID>NM_show_toggle_fold()<CR>',
|
||||||
|
\
|
||||||
\ 'r': ':call <SID>NM_show_reply()<CR>',
|
\ 'r': ':call <SID>NM_show_reply()<CR>',
|
||||||
\ 'm': ':call <SID>NM_new_mail()<CR>',
|
\ 'm': ':call <SID>NM_new_mail()<CR>',
|
||||||
\ '?': ':echo <SID>NM_show_message_id() . '' @ '' . join(<SID>NM_show_search_words())<CR>',
|
\ '?': ':echo <SID>NM_show_message_id() . '' @ '' . join(<SID>NM_show_search_words())<CR>',
|
||||||
|
@ -494,16 +498,21 @@ function! s:NM_show_pipe_message()
|
||||||
echo 'not implemented'
|
echo 'not implemented'
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
" --- --- show screen helper functions {{{2
|
function! s:NM_show_previous_fold()
|
||||||
|
echo 'not implemented'
|
||||||
function! s:NM_show_thread_id()
|
|
||||||
if !exists('b:nm_words')
|
|
||||||
echoe 'no b:nm_words'
|
|
||||||
return ''
|
|
||||||
endif
|
|
||||||
return b:nm_words[0]
|
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
|
function! s:NM_show_next_fold()
|
||||||
|
echo 'not implemented'
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
function! s:NM_show_toggle_fold()
|
||||||
|
echo 'not implemented'
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
|
||||||
|
" --- --- show screen helper functions {{{2
|
||||||
|
|
||||||
function! s:NM_show_message_id()
|
function! s:NM_show_message_id()
|
||||||
if !exists('b:nm_raw_info')
|
if !exists('b:nm_raw_info')
|
||||||
echoe 'no b:nm_raw_info'
|
echoe 'no b:nm_raw_info'
|
||||||
|
|
Loading…
Reference in a new issue