aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Bart Trojanowski <bart@jukie.net>2009-11-19 12:30:59 -0500
committerGravatar Bart Trojanowski <bart@jukie.net>2009-11-25 00:48:49 -0500
commitc6314fa2347fff97436acc0591cc4e6e557a19d6 (patch)
tree81bea8cd52bfc4b80a36ce551c2d1e11357b267d
parentc80ab27d08540d3f434629f62bdf2f6a13a1cf41 (diff)
naively fold all signatures
-rw-r--r--vim/plugin/notmuch.vim27
1 files changed, 27 insertions, 0 deletions
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 <buffer> q :b %d<CR>", 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