aboutsummaryrefslogtreecommitdiffhomepage
path: root/vim
diff options
context:
space:
mode:
authorGravatar Bart Trojanowski <bart@jukie.net>2009-11-23 20:26:28 -0500
committerGravatar Bart Trojanowski <bart@jukie.net>2009-11-25 00:48:55 -0500
commit76dc061de31fbbe5dde0558e45fec17a06b2bf71 (patch)
tree7fd2819e402e1d1256104f86b681ef16c43c23f3 /vim
parentb740392b3de8fad233e1cf9db7c881208d76115c (diff)
vim: include stubs for Tab-ing thorugh folds in show view
Diffstat (limited to 'vim')
-rw-r--r--vim/plugin/notmuch.vim23
1 files changed, 16 insertions, 7 deletions
diff --git a/vim/plugin/notmuch.vim b/vim/plugin/notmuch.vim
index aff49266..fbe4cd9e 100644
--- a/vim/plugin/notmuch.vim
+++ b/vim/plugin/notmuch.vim
@@ -128,6 +128,10 @@ let g:notmuch_show_maps = {
\ '<Space>': ':call <SID>NM_show_advance_marking_read_and_archiving()<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>',
\ 'm': ':call <SID>NM_new_mail()<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'
endfunction
-" --- --- show screen helper functions {{{2
+function! s:NM_show_previous_fold()
+ echo 'not implemented'
+endfunction
-function! s:NM_show_thread_id()
- if !exists('b:nm_words')
- echoe 'no b:nm_words'
- return ''
- endif
- return b:nm_words[0]
+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()
if !exists('b:nm_raw_info')
echoe 'no b:nm_raw_info'