X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=vim%2Fplugin%2Fnotmuch.vim;h=d661c5658b6b5f4ebde85d289ae16ed925b556d5;hp=a10b9a3a94bde749b3dc55f722fc05e804379e92;hb=882621927483635d37eed70eef007f1ef97662d0;hpb=84f33e6546eb11a30eed74652fa408ae7ac192be diff --git a/vim/plugin/notmuch.vim b/vim/plugin/notmuch.vim index a10b9a3a..d661c565 100644 --- a/vim/plugin/notmuch.vim +++ b/vim/plugin/notmuch.vim @@ -102,7 +102,7 @@ function! s:NM_cmd_search(words) let disp = copy(lines) call map(disp, 'substitute(v:val, "^thread:\\S* ", "", "")' ) - call s:NM_newBuffer('search', join(disp, "\n")) + call NM_newBuffer('search', join(disp, "\n")) let b:nm_raw_lines = lines call NM_set_map(g:notmuch_search_maps) @@ -113,9 +113,9 @@ endfunction " --- --- search screen action functions {{{2 function! s:NM_search_show_thread() - let id = NM_search_find_thread_id() + let id = NM_search_find_thread_id() if id != '' - call s:NM_cmd_show([id]) + call NM_cmd_show([id]) endif endfunction @@ -170,7 +170,7 @@ endfunction function! s:NM_search_refresh_view() let lno = line('.') - call s:NM_cmd_search(g:notmuch_current_search_words) + call NM_cmd_search(g:notmuch_current_search_words) " FIXME: should find the line of the thread we were on if possible exec printf('norm %dG', lno) endfunction @@ -218,13 +218,13 @@ function! s:NM_cmd_show(words) let info = s:NM_cmd_show_parse(lines) - call s:NM_newBuffer('show', join(info['disp'], "\n")) + call 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 NM_cmd_show_mkfolds() + call NM_cmd_show_mksyntax() call NM_set_map(g:notmuch_show_maps) setlocal foldtext=NM_cmd_show_foldtext() setlocal fillchars= @@ -550,7 +550,7 @@ endfunction function! NotMuch(args) if !strlen(a:args) - call s:NM_cmd_search(g:notmuch_current_search_words) + call NM_cmd_search(g:notmuch_current_search_words) return endif