make <Enter> from search screen display the correct message

This commit is contained in:
Bart Trojanowski 2009-11-18 21:27:50 -05:00
parent 3fe89c43dd
commit 905a08788e

View file

@ -53,11 +53,11 @@ function! s:NM_cmd_search(words)
endfunction endfunction
function! s:NM_search_display() function! s:NM_search_display()
let line = line('.')
if !exists('b:nm_raw_data') if !exists('b:nm_raw_data')
echo 'no b:nm_raw_data' echo 'no b:nm_raw_data'
else 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] let what = split(info, '\s\+')[0]
call s:NM_cmd_show([what]) call s:NM_cmd_show([what])
endif endif
@ -78,7 +78,7 @@ function! s:NM_cmd_show(words)
endfunction endfunction
" --- helper function " --- helper functions
function! s:NM_newBuffer(ft, content) function! s:NM_newBuffer(ft, content)
enew enew