]> git.notmuchmail.org Git - notmuch/commitdiff
naively fold all signatures
authorBart Trojanowski <bart@jukie.net>
Thu, 19 Nov 2009 17:30:59 +0000 (12:30 -0500)
committerBart Trojanowski <bart@jukie.net>
Wed, 25 Nov 2009 05:48:49 +0000 (00:48 -0500)
vim/plugin/notmuch.vim

index 2b92ad688dfbc5a3ba37c22d8107a9e35984e774..a57b2ae8a1a9b16db3663e49dd36c8fde5db1f04 100644 (file)
@@ -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