From 6c5785e47403552c2f9b92de545e530b6dfd5999 Mon Sep 17 00:00:00 2001 From: Shahaf Arad Date: Sat, 21 Feb 2015 14:12:19 +0200 Subject: [PATCH] Show plugins' description and search in them --- autoload/vundle/scripts.vim | 51 +++++++++++++++++++++++++++++-------- 1 file changed, 40 insertions(+), 11 deletions(-) diff --git a/autoload/vundle/scripts.vim b/autoload/vundle/scripts.vim index d7409a10..c420727f 100644 --- a/autoload/vundle/scripts.vim +++ b/autoload/vundle/scripts.vim @@ -11,12 +11,21 @@ func! vundle#scripts#all(bang, ...) let info = ['"Keymap: i - Install plugin; c - Cleanup; s - Search; R - Reload list'] let matches = s:load_scripts(a:bang) if !empty(a:1) - let matches = filter(matches, 'v:val =~? "'.escape(a:1,'"').'"') + let escapedSearch = escape(a:1,'"') + " Search both name and description of a plugin + " for matches + let matches = filter(matches, + \ 'v:val.n =~? "'.escapedSearch.'" || + \ v:val.s =~? "'.escapedSearch.'"') let info += ['"Search results for: '.a:1] - " TODO: highlight matches let b:match = a:1 endif - call vundle#scripts#view('search',info, vundle#scripts#bundle_names(reverse(matches))) + call vundle#scripts#view('search',info, vundle#scripts#bundle_search_data(matches)) + + if exists('escapedSearch') + exec 'match Search /\v\c' . escapedSearch . '/' + endif + redraw echo len(matches).' plugins found' endf @@ -39,7 +48,7 @@ endf " candidates, see also :h command-completion-custom " --------------------------------------------------------------------------- func! vundle#scripts#complete(a,c,d) - return join(s:load_scripts(0),"\n") + return join(map(s:load_scripts(0), "v:val.n"),"\n") endf @@ -115,9 +124,18 @@ endf " return -- a list of 'Plugin ...' lines suitable to be written to a buffer " --------------------------------------------------------------------------- func! vundle#scripts#bundle_names(names) - return map(copy(a:names), ' printf("Plugin ' ."'%s'".'", v:val) ') + return map(copy(a:names), ' printf("Plugin ''%s''", v:val ') endf +" --------------------------------------------------------------------------- +" Create a list of 'Plugin ...' lines from a list of bundle search data. +" +" names -- a list of data (dictionaries) of plugins +" return -- a list of 'Plugin ...' lines suitable to be written to a buffer +" --------------------------------------------------------------------------- +func! vundle#scripts#bundle_search_data(data) + return map(copy(a:data), ' printf("Plugin ''%s'' \" %s", v:val.n, v:val.s) ') +endf " --------------------------------------------------------------------------- " Open a buffer to display information to the user. Several special commands @@ -158,6 +176,9 @@ func! vundle#scripts#view(title, headers, results) syn keyword vimCommand Bundle syn keyword vimCommand Helptags + " Without this, highlighting breaks when description contains double quotes + syn match vimComment '\v".*$' + com! -buffer -bang -nargs=1 DeletePlugin \ call vundle#installer#run('vundle#installer#delete', split(,',')[0], ['!' == '', ]) @@ -175,13 +196,13 @@ func! vundle#scripts#view(title, headers, results) com! -buffer -nargs=0 VundleChangelog call s:view_changelog() nnoremap q :silent bd! - nnoremap D :exec 'Delete'.getline('.') + nnoremap D :exec 'Delete'.get_plugin_line() - nnoremap add :exec 'Install'.getline('.') - nnoremap add! :exec 'Install'.substitute(getline('.'), '^Plugin ', 'Plugin! ', '') + nnoremap add :exec 'Install'.get_plugin_line() + nnoremap add! :exec 'Install'.substitute(get_plugin_line(), '^Plugin ', 'Plugin! ', '') - nnoremap i :exec 'InstallAndRequire'.getline('.') - nnoremap I :exec 'InstallAndRequire'.substitute(getline('.'), '^Plugin ', 'Plugin! ', '') + nnoremap i :exec 'InstallAndRequire'.get_plugin_line() + nnoremap I :exec 'InstallAndRequire'.substitute(get_plugin_line(), '^Plugin ', 'Plugin! ', '') nnoremap l :VundleLog nnoremap u :VundleChangelog @@ -199,6 +220,14 @@ func! vundle#scripts#view(title, headers, results) endf +" --------------------------------------------------------------------------- +" Remove description from plugin line to prevent current +" implementation from breaking. +" --------------------------------------------------------------------------- +func! s:get_plugin_line() + return matchstr(getline('.'), '\vPlugin\s''.{-}''') +endf + " --------------------------------------------------------------------------- " Load the plugin database from vim-scripts.org . " @@ -211,7 +240,7 @@ func! s:fetch_scripts(to) call mkdir(scripts_dir, "p") endif - let l:vim_scripts_json = 'http://vim-scripts.org/api/scripts.json' + let l:vim_scripts_json = 'http://vim-scripts.org/api/scripts_recent.json' if executable("curl") let cmd = 'curl --fail -s -o '.vundle#installer#shellesc(a:to).' '.l:vim_scripts_json elseif executable("wget")