X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=vim%2Fplugin%2Fnotmuch.vim;h=a57b2ae8a1a9b16db3663e49dd36c8fde5db1f04;hp=2b92ad688dfbc5a3ba37c22d8107a9e35984e774;hb=c6314fa2347fff97436acc0591cc4e6e557a19d6;hpb=c80ab27d08540d3f434629f62bdf2f6a13a1cf41;ds=sidebyside diff --git a/vim/plugin/notmuch.vim b/vim/plugin/notmuch.vim index 2b92ad68..a57b2ae8 100644 --- a/vim/plugin/notmuch.vim +++ b/vim/plugin/notmuch.vim @@ -96,9 +96,36 @@ function! s:NM_cmd_show(words) setlocal bufhidden=delete let b:nm_raw_data = data + call s:NM_cmd_show_mkfolds() + exec printf("nnoremap q :b %d", bufnr) endfunction +function! s:NM_cmd_show_mkfolds() + let modetype = '' + let modeline = -1 + let lnum = 1 + while lnum <= line('$') + let line = getline(lnum) + if modetype == '' + if match(line, s:notmuch_show_signature_regexp) != -1 + let modetype = 'sig' + let modeline = lnum + echo "start=" . modeline + endif + elseif modetype == 'sig' + if (lnum - modeline) > s:notmuch_show_signature_lines_max + let modetype = '' + elseif match(line, s:notmuch_show_part_end_regexp) != -1 + exec printf('%d,%dfold', modeline, lnum) + let modetype = '' + endif + endif + + let lnum = lnum + 1 + endwhile +endfunction + " --- helper functions