2018-12-17 06:28:27 -05:00
|
|
|
" don't spam the user when Vim is started in Vi compatibility mode
|
|
|
|
let s:cpo_save = &cpo
|
|
|
|
set cpo&vim
|
|
|
|
|
2017-11-24 08:59:41 -05:00
|
|
|
function! go#decls#Decls(mode, ...) abort
|
2018-06-14 06:31:12 -04:00
|
|
|
let decls_mode = go#config#DeclsMode()
|
|
|
|
if decls_mode == 'ctrlp'
|
2017-11-24 08:59:41 -05:00
|
|
|
call ctrlp#init(call("ctrlp#decls#cmd", [a:mode] + a:000))
|
2018-06-14 06:31:12 -04:00
|
|
|
elseif decls_mode == 'fzf'
|
2017-11-24 08:59:41 -05:00
|
|
|
call call("fzf#decls#cmd", [a:mode] + a:000)
|
|
|
|
else
|
|
|
|
if globpath(&rtp, 'plugin/ctrlp.vim') != ""
|
|
|
|
call ctrlp#init(call("ctrlp#decls#cmd", [a:mode] + a:000))
|
|
|
|
elseif globpath(&rtp, 'plugin/fzf.vim') != ""
|
|
|
|
call call("fzf#decls#cmd", [a:mode] + a:000)
|
|
|
|
else
|
|
|
|
call go#util#EchoError("neither ctrlp.vim nor fzf.vim are installed. Please install either one")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
endfunction
|
|
|
|
|
2018-12-17 06:28:27 -05:00
|
|
|
" restore Vi compatibility settings
|
|
|
|
let &cpo = s:cpo_save
|
|
|
|
unlet s:cpo_save
|
|
|
|
|
2017-11-24 08:59:41 -05:00
|
|
|
" vim: sw=2 ts=2 et
|