]> git.notmuchmail.org Git - notmuch/blobdiff - vim/plugin/notmuch.vim
folding for citations
[notmuch] / vim / plugin / notmuch.vim
index 00ee98427ccca5269eba347f8d1265d02bf11b67..5fe438e78cf1eece676d160201c473738b2e9c2a 100644 (file)
@@ -29,6 +29,30 @@ if !exists('g:notmuch_search_reverse')
         let g:notmuch_search_reverse = 1
 endif
 
         let g:notmuch_search_reverse = 1
 endif
 
+" --- used to match output of notmuch
+
+let s:notmuch_show_message_begin_regexp    = '^\fmessage{'
+let s:notmuch_show_message_end_regexp      = '^\fmessage}'
+let s:notmuch_show_header_begin_regexp     = '^\fheader{'
+let s:notmuch_show_header_end_regexp       = '^\fheader}'
+let s:notmuch_show_body_begin_regexp       = '^\fbody{'
+let s:notmuch_show_body_end_regexp         = '^\fbody}'
+let s:notmuch_show_attachment_begin_regexp = '^\fattachment{'
+let s:notmuch_show_attachment_end_regexp   = '^\fattachment}'
+let s:notmuch_show_part_begin_regexp       = '^\fpart{'
+let s:notmuch_show_part_end_regexp         = '^\fpart}'
+let s:notmuch_show_marker_regexp           = '^\f\\(message\\|header\\|body\\|attachment\\|part\\)[{}].*$'
+
+let s:notmuch_show_id_regexp               = '\(id:[^ ]*\)'
+let s:notmuch_show_depth_regexp            = ' depth:\([0-9]*\) '
+let s:notmuch_show_filename_regexp         = 'filename:\(.*\)$'
+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)
 " --- implement search screen
 
 function! s:NM_cmd_search(words)
@@ -47,16 +71,17 @@ function! s:NM_cmd_search(words)
         let b:nm_raw_data = lines
 
         nnoremap <buffer> <Enter> :call <SID>NM_search_display()<CR>
         let b:nm_raw_data = lines
 
         nnoremap <buffer> <Enter> :call <SID>NM_search_display()<CR>
+        nnoremap <buffer> s       :call <SID>NM_cmd_search(split(input('NotMuch Search:')))<CR>
         setlocal cursorline
         setlocal nowrap
 endfunction
 
 function! s:NM_search_display()
         setlocal cursorline
         setlocal nowrap
 endfunction
 
 function! s:NM_search_display()
-        let line = line('.')
         if !exists('b:nm_raw_data')
                 echo 'no b:nm_raw_data'
         else
         if !exists('b:nm_raw_data')
                 echo 'no b:nm_raw_data'
         else
-                let info = b:nm_raw_data[line]
+                let line = line('.')
+                let info = b:nm_raw_data[line-1]
                 let what = split(info, '\s\+')[0]
                 call s:NM_cmd_show([what])
         endif
                 let what = split(info, '\s\+')[0]
                 call s:NM_cmd_show([what])
         endif
@@ -73,11 +98,45 @@ function! s:NM_cmd_show(words)
         setlocal bufhidden=delete
         let b:nm_raw_data = data
 
         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
 
         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 function
+" --- helper functions
 
 function! s:NM_newBuffer(ft, content)
         enew
 
 function! s:NM_newBuffer(ft, content)
         enew