]> git.notmuchmail.org Git - notmuch/blobdiff - vim/plugin/notmuch.vim
folding for citations
[notmuch] / vim / plugin / notmuch.vim
index 2b92ad688dfbc5a3ba37c22d8107a9e35984e774..5fe438e78cf1eece676d160201c473738b2e9c2a 100644 (file)
@@ -51,6 +51,8 @@ let s:notmuch_show_tags_regexp             = '(\([^)]*\))$'
 let s:notmuch_show_signature_regexp        = '^\(-- \?\|_\+\)$'
 let s:notmuch_show_signature_lines_max     = 12
 
+let s:notmuch_show_citation_regexp         = '^\s*>'
+
 " --- implement search screen
 
 function! s:NM_cmd_search(words)
@@ -96,9 +98,43 @@ 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
+                        elseif match(line, s:notmuch_show_citation_regexp) != -1
+                                let modetype = 'cit'
+                                let modeline = lnum
+                        endif
+                elseif modetype == 'cit'
+                        if match(line, s:notmuch_show_citation_regexp) == -1
+                                exec printf('%d,%dfold', modeline, lnum)
+                                let modetype = ''
+                        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