You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.2 KiB
VimL
58 lines
1.2 KiB
VimL
" Check if tagbar is installed under plugins or is directly under rtp
|
|
" this covers pathogen + Vundle/Bundle
|
|
"
|
|
" Also make sure the ctags command exists
|
|
"
|
|
if !executable('ctags')
|
|
finish
|
|
elseif globpath(&rtp, 'plugin/tagbar.vim') == ""
|
|
finish
|
|
endif
|
|
|
|
if !exists("g:go_gotags_bin")
|
|
let g:go_gotags_bin = "gotags"
|
|
endif
|
|
|
|
|
|
function! s:SetTagbar()
|
|
let bin_path = go#path#CheckBinPath(g:go_gotags_bin)
|
|
if empty(bin_path)
|
|
return
|
|
endif
|
|
|
|
if !exists("g:tagbar_type_go")
|
|
let g:tagbar_type_go = {
|
|
\ 'ctagstype' : 'go',
|
|
\ 'kinds' : [
|
|
\ 'p:package',
|
|
\ 'i:imports',
|
|
\ 'c:constants',
|
|
\ 'v:variables',
|
|
\ 't:types',
|
|
\ 'n:interfaces',
|
|
\ 'w:fields',
|
|
\ 'e:embedded',
|
|
\ 'm:methods',
|
|
\ 'r:constructor',
|
|
\ 'f:functions'
|
|
\ ],
|
|
\ 'sro' : '.',
|
|
\ 'kind2scope' : {
|
|
\ 't' : 'ctype',
|
|
\ 'n' : 'ntype'
|
|
\ },
|
|
\ 'scope2kind' : {
|
|
\ 'ctype' : 't',
|
|
\ 'ntype' : 'n'
|
|
\ },
|
|
\ 'ctagsbin' : bin_path,
|
|
\ 'ctagsargs' : '-sort -silent'
|
|
\ }
|
|
endif
|
|
endfunction
|
|
|
|
|
|
call s:SetTagbar()
|
|
|
|
" vim: sw=2 ts=2 et
|