From 905a08788e0e1620ff4202269af2a8e4666767e1 Mon Sep 17 00:00:00 2001 From: Bart Trojanowski Date: Wed, 18 Nov 2009 21:27:50 -0500 Subject: [PATCH] make from search screen display the correct message --- vim/plugin/notmuch.vim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 -- 2.43.0