]> git.notmuchmail.org Git - notmuch/commitdiff
added ^n to handle walking messages
authorBart Trojanowski <bart@jukie.net>
Fri, 20 Nov 2009 06:35:33 +0000 (01:35 -0500)
committerBart Trojanowski <bart@jukie.net>
Wed, 25 Nov 2009 05:48:50 +0000 (00:48 -0500)
vim/README
vim/plugin/notmuch.vim

index c55875b15e9f8c8e1331b11a8f0d1a21482d2d8f..1ed2c4248337328e2cae6c5e66029ff3123b5b9a 100644 (file)
@@ -25,4 +25,5 @@ Buffer types:
 
         Keybindings:
             q       - return to search display
 
         Keybindings:
             q       - return to search display
+            ^n      - next message
 
 
index 6e1f8b14a8ed7a8f1b25df1c5d52db3aef7810a7..94eb0bbab2b9ea76e06d21022ee4d75ab52704c4 100644 (file)
@@ -94,7 +94,7 @@ endfunction
 " --- implement show screen
 
 function! s:NM_cmd_show(words)
 " --- implement show screen
 
 function! s:NM_cmd_show(words)
-        let bufnr = bufnr('%')
+        let prev_bufnr = bufnr('%')
         let data = s:NM_run(['show'] + a:words)
         let lines = split(data, "\n")
 
         let data = s:NM_run(['show'] + a:words)
         let lines = split(data, "\n")
 
@@ -103,6 +103,7 @@ function! s:NM_cmd_show(words)
         call s:NM_newBuffer('show', join(info['disp'], "\n"))
         setlocal bufhidden=delete
         let b:nm_raw_info = info
         call s:NM_newBuffer('show', join(info['disp'], "\n"))
         setlocal bufhidden=delete
         let b:nm_raw_info = info
+        let b:nm_prev_bufnr = prev_bufnr
 
         call s:NM_cmd_show_mkfolds()
         call s:NM_cmd_show_mksyntax()
 
         call s:NM_cmd_show_mkfolds()
         call s:NM_cmd_show_mksyntax()
@@ -110,7 +111,26 @@ function! s:NM_cmd_show(words)
         setlocal fillchars=
         setlocal foldcolumn=6
 
         setlocal fillchars=
         setlocal foldcolumn=6
 
-        exec printf("nnoremap <buffer> q :b %d<CR>", bufnr)
+        exec printf("nnoremap <buffer> q :b %d<CR>", b:nm_prev_bufnr)
+        nnoremap <buffer> <C-N> :call <SID>NM_cmd_show_next()<CR>
+endfunction
+
+function! s:NM_cmd_show_next()
+        let info = b:nm_raw_info
+        let lnum = line('.')
+        let cnt = 0
+        for msg in info['msgs']
+                let cnt = cnt + 1
+                if lnum >= msg['start']
+                        continue
+                endif
+
+                exec printf('norm %dG', msg['start'])
+                norm zz
+                return
+        endfor
+        norm qj
+        call <SID>NM_search_display()
 endfunction
 
 " s:NM_cmd_show_parse returns the following dictionary:
 endfunction
 
 " s:NM_cmd_show_parse returns the following dictionary: