From: Bart Trojanowski Date: Thu, 19 Nov 2009 17:30:59 +0000 (-0500) Subject: naively fold all signatures X-Git-Tag: 0.1~313^2~98 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=c6314fa2347fff97436acc0591cc4e6e557a19d6 naively fold all signatures --- 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