From: Bart Trojanowski Date: Thu, 19 Nov 2009 02:27:50 +0000 (-0500) Subject: make from search screen display the correct message X-Git-Tag: 0.1~313^2~100 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=905a08788e0e1620ff4202269af2a8e4666767e1 make from search screen display the correct message --- diff --git a/vim/plugin/notmuch.vim b/vim/plugin/notmuch.vim index 77e3021d..90678b93 100644 --- a/vim/plugin/notmuch.vim +++ b/vim/plugin/notmuch.vim @@ -53,11 +53,11 @@ function! s:NM_cmd_search(words) endfunction function! s:NM_search_display() - let line = line('.') 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 @@ -78,7 +78,7 @@ function! s:NM_cmd_show(words) endfunction -" --- helper function +" --- helper functions function! s:NM_newBuffer(ft, content) enew