dmenu.vim

Unnamed repository; edit this file 'description' to name the repository.
git clone git://edryd.org/dmenu.vim
Log | Files | Refs

commit 9766b24762cbd95bd6a4971acf8d06544e1b12d4
parent 0a1984f3db815f200c3b643761c447295f8d37e6
Author: Ed van Bruggen <edvb54@gmail.com>
Date:   Mon,  3 Oct 2016 17:03:38 -0700

Add :DmenuTag to open tag generated from ctags

Diffstat:
plugin/dmenu.vim | 13+++++++++++++
1 file changed, 13 insertions(+), 0 deletions(-)

diff --git a/plugin/dmenu.vim b/plugin/dmenu.vim @@ -24,6 +24,10 @@ if !exists('g:dmenu_git_ls') let g:dmenu_git_ls= 'git ls-files' endif +if !exists('g:dmenu_ctags') + let g:dmenu_ctags = 'ctags -f - --sort=no -R . | cut -f 1' +endif + " functions {{{1 " return true if vim is in a git repository function! s:is_git_repo() @@ -54,9 +58,18 @@ function! s:dmenu_buf(cmd) call s:dmenu_open(join(files, '\n'), a:cmd) endfunction +function! s:dmenu_tag(cmd) + call system('ctags -R .') " TODO dont create tags files + let file = system(g:dmenu_ctags . ' | ' . g:dmenu_cmd . ' -p :' . a:cmd) + if !empty(file) + execute a:cmd . ' ' . file + endif +endfunction + " commands {{{1 command! -nargs=1 DmenuFile call s:dmenu_file(<args>) command! -nargs=1 DmenuBuf call s:dmenu_buf(<args>) +command! -nargs=1 DmenuTag call s:dmenu_tag(<args>) " }}}