mirror of
https://github.com/preservim/tagbar.git
synced 2024-11-26 02:13:44 +08:00
479 lines
13 KiB
VimL
479 lines
13 KiB
VimL
" ============================================================================
|
|
" File: tagbar.vim
|
|
" Description: List the current file's tags in a sidebar, ordered by class etc
|
|
" Maintainer: Jan Larres <jan@majutsushi.net>
|
|
" Licence: Vim licence
|
|
" Website: http://github.com/majutsushi/tagbar
|
|
" Note: This plugin was heavily inspired by the 'Taglist' plugin by
|
|
" Yegappan Lakshamanan and uses some small portions of code from
|
|
" it.
|
|
" ============================================================================
|
|
|
|
if &cp || exists('g:loaded_tagbar')
|
|
finish
|
|
endif
|
|
|
|
if !exists('*system')
|
|
echomsg 'Tagbar: No system() function available, skipping plugin'
|
|
finish
|
|
endif
|
|
|
|
if !exists('g:tagbar_ctags_bin')
|
|
if executable('ctags-exuberant')
|
|
let g:tagbar_ctags_bin = 'ctags-exuberant'
|
|
elseif executable('exctags')
|
|
let g:tagbar_ctags_bin = 'exctags'
|
|
elseif executable('ctags')
|
|
let g:tagbar_ctags_bin = 'ctags'
|
|
elseif executable('ctags.exe')
|
|
let g:tagbar_ctags_bin = 'ctags.exe'
|
|
elseif executable('tags')
|
|
let g:tagbar_ctags_bin = 'tags'
|
|
else
|
|
echomsg 'Tagbar: Exuberant ctags not found, skipping plugin'
|
|
finish
|
|
endif
|
|
endif
|
|
|
|
let g:loaded_tagbar = 1
|
|
|
|
if !exists('g:tagbar_left')
|
|
let g:tagbar_left = 0
|
|
endif
|
|
|
|
if !exists('g:tagbar_width')
|
|
let g:tagbar_width = 40
|
|
endif
|
|
|
|
if !exists('g:tagbar_types')
|
|
let g:tagbar_types = {}
|
|
endif
|
|
|
|
if !exists('g:tagbar_autoclose')
|
|
let g:tagbar_autoclose = 0
|
|
endif
|
|
|
|
function! s:InitTypes()
|
|
let s:known_files = {}
|
|
let s:known_types = {}
|
|
|
|
let type_cpp = {}
|
|
let type_cpp.ctagstype = 'c++'
|
|
let type_cpp.scopes = ['namespace', 'class', 'struct']
|
|
let type_cpp.sro = '::'
|
|
let type_cpp.kinds = [
|
|
\ 'd:macros',
|
|
\ 'n:namespaces',
|
|
\ 'c:classes',
|
|
\ 's:structs',
|
|
\ 't:typedefs',
|
|
\ 'g:enum',
|
|
\ 'u:unions',
|
|
\ 'p:prototypes',
|
|
\ 'f:functions',
|
|
\ 'm:members',
|
|
\ 'v:variables'
|
|
\ ]
|
|
let type_cpp.kind2scope = {
|
|
\ 'n' : 'namespace',
|
|
\ 'c' : 'class',
|
|
\ 's' : 'struct'
|
|
\ }
|
|
let s:known_types.cpp = type_cpp
|
|
|
|
let type_python = {}
|
|
let type_python.ctagstype = 'python'
|
|
let type_python.scopes = ['class', 'function']
|
|
let type_python.sro = '.'
|
|
let type_python.kinds = [
|
|
\ 'i:imports',
|
|
\ 'c:classes',
|
|
\ 'f:functions',
|
|
\ 'm:members',
|
|
\ 'v:variables'
|
|
\ ]
|
|
let type_python.kind2scope = {
|
|
\ 'c' : 'class',
|
|
\ 'f' : 'function',
|
|
\ 'm' : 'function'
|
|
\ }
|
|
let s:known_types.python = type_python
|
|
|
|
call extend(s:known_types, g:tagbar_types)
|
|
endfunction
|
|
|
|
call s:InitTypes()
|
|
|
|
function! s:ToggleWindow()
|
|
let tagbarwinnr = bufwinnr("__Tagbar__")
|
|
if tagbarwinnr != -1
|
|
call s:CloseWindow()
|
|
return
|
|
endif
|
|
|
|
call s:OpenWindow()
|
|
endfunction
|
|
|
|
function! s:OpenWindow()
|
|
" If the tagbar window is already open jump to it
|
|
let tagbarwinnr = bufwinnr('__Tagbar__')
|
|
if tagbarwinnr != -1 && winnr() != tagbarwinnr
|
|
" execute tagbarwinnr . 'wincmd w'
|
|
return
|
|
endif
|
|
|
|
let openpos = g:tagbar_left ? 'topleft vertical ' : 'botright vertical '
|
|
execute 'silent! keepalt ' . openpos . g:tagbar_width . 'split ' . '__Tagbar__'
|
|
|
|
setlocal noreadonly " in case the "view" mode is used
|
|
setlocal buftype=nofile
|
|
setlocal bufhidden=delete
|
|
setlocal noswapfile
|
|
setlocal nobuflisted
|
|
setlocal nomodifiable
|
|
setlocal filetype=tagbar
|
|
setlocal nolist
|
|
setlocal nonumber
|
|
setlocal norelativenumber
|
|
setlocal nowrap
|
|
setlocal winfixwidth
|
|
|
|
setlocal foldenable
|
|
setlocal foldminlines=0
|
|
setlocal foldmethod=manual
|
|
setlocal foldlevel=9999
|
|
setlocal foldcolumn=1
|
|
setlocal foldtext=v:folddashes.getline(v:foldstart)
|
|
|
|
let cpoptions_save = &cpoptions
|
|
set cpoptions&vim
|
|
|
|
" nnoremap <script> <silent> <buffer> k :call <sid>GundoMove(-1)<CR>
|
|
|
|
augroup TagbarAutoCmds
|
|
autocmd!
|
|
autocmd BufEnter __Tagbar__ nested call s:QuitIfOnlyWindow()
|
|
autocmd BufUnload __Tagbar__ call s:CleanUp()
|
|
" autocmd CursorHold __Tag_List__ call s:Tlist_Window_Show_Info()
|
|
|
|
autocmd BufEnter * call s:RefreshContent()
|
|
" autocmd TabEnter * silent call s:Tlist_Refresh_Folds()
|
|
" autocmd CursorHold * silent call s:Tlist_Window_Highlight_Tag(
|
|
" \ fnamemodify(bufname('%'), ':p'), line('.'), 1, 0)
|
|
augroup END
|
|
|
|
let &cpoptions = cpoptions_save
|
|
|
|
execute 'wincmd p'
|
|
endfunction
|
|
|
|
function! s:CloseWindow()
|
|
let tagbarwinnr = bufwinnr('__Tagbar__')
|
|
if tagbarwinnr == -1
|
|
return
|
|
endif
|
|
|
|
if winnr() == tagbarwinnr
|
|
if winbufnr(2) != -1
|
|
" Other windows are open, only close the tagbar one
|
|
close
|
|
endif
|
|
else
|
|
" Go to the tagbar window, close it and then come back to the
|
|
" original window
|
|
let curbufnr = bufnr('%')
|
|
exe tagbarwinnr . 'wincmd w'
|
|
close
|
|
" Need to jump back to the original window only if we are not
|
|
" already in that window
|
|
let winnum = bufwinnr(curbufnr)
|
|
if winnr() != winnum
|
|
exe winnum . 'wincmd w'
|
|
endif
|
|
endif
|
|
endfunction
|
|
|
|
function! s:CleanUp()
|
|
silent! autocmd! TagbarAutoCmds
|
|
endfunction
|
|
|
|
function! s:QuitIfOnlyWindow()
|
|
" Before quitting Vim, delete the tagbar buffer so that
|
|
" the '0 mark is correctly set to the previous buffer.
|
|
if winbufnr(2) == -1
|
|
" Check if there is more than one tab page
|
|
if tabpagenr('$') == 1
|
|
bdelete
|
|
quit
|
|
else
|
|
close
|
|
endif
|
|
endif
|
|
endfunction
|
|
|
|
function! s:RefreshContent()
|
|
let fname = fnamemodify(bufname('%'), ':p')
|
|
|
|
" Don't do anything when entering the tagbar window
|
|
if &filetype == 'tagbar'
|
|
return
|
|
endif
|
|
|
|
if has_key(s:known_files, fname)
|
|
if s:known_files[fname].mtime != getftime(fname)
|
|
call s:ProcessFile(fname, &filetype)
|
|
endif
|
|
else
|
|
call s:ProcessFile(fname, &filetype)
|
|
endif
|
|
|
|
let tagbarwinnr = bufwinnr('__Tagbar__')
|
|
|
|
if tagbarwinnr != -1
|
|
call s:RenderContent(fname, &filetype)
|
|
endif
|
|
endfunction
|
|
|
|
function! s:IsValidFile(fname, ftype)
|
|
if a:fname == '' || a:ftype == ''
|
|
return 0
|
|
endif
|
|
|
|
if !filereadable(a:fname)
|
|
return 0
|
|
endif
|
|
|
|
if !has_key(s:known_types, a:ftype)
|
|
return 0
|
|
endif
|
|
|
|
return 1
|
|
endfunction
|
|
|
|
function! s:ProcessFile(fname, ftype)
|
|
if !s:IsValidFile(a:fname, a:ftype)
|
|
return
|
|
endif
|
|
|
|
let typeinfo = s:known_types[a:ftype]
|
|
|
|
let ctags_args = ' -f - --format=2 --excmd=pattern --fields=nksSaz --extra= '
|
|
|
|
let ctags_args .= ' --sort=yes '
|
|
|
|
let ctags_type = typeinfo.ctagstype
|
|
let ctags_kinds = ""
|
|
for kind in typeinfo.kinds
|
|
let [short, full] = split(kind, ':')
|
|
let ctags_kinds .= short
|
|
endfor
|
|
|
|
let ctags_args .= ' --language-force=' . ctags_type .
|
|
\ ' --' . ctags_type . '-kinds=' . ctags_kinds . ' '
|
|
|
|
let ctags_cmd = g:tagbar_ctags_bin . ctags_args . shellescape(a:fname)
|
|
let ctags_output = system(ctags_cmd)
|
|
|
|
if v:shell_error
|
|
let msg = 'Tagbar: Could not generate tags for ' . a:fname
|
|
call s:PrintWarningMsg(msg)
|
|
if !empty(ctags_output)
|
|
call s:PrintWarningMsg(ctags_output)
|
|
endif
|
|
return
|
|
endif
|
|
|
|
let fileinfo = {}
|
|
let fileinfo.mtime = getftime(a:fname)
|
|
|
|
let rawtaglist = split(ctags_output, '\n\+')
|
|
|
|
let fileinfo.tags = []
|
|
|
|
for line in rawtaglist
|
|
let taginfo = s:ParseTagline(line)
|
|
call add(fileinfo.tags, taginfo)
|
|
endfor
|
|
|
|
if has_key(typeinfo, 'scopes') && !empty(typeinfo.scopes)
|
|
" Extract top-level scopes, removing them from the tag list
|
|
let scopedtags = filter(copy(fileinfo.tags),
|
|
\ 's:IsTopLevelScopeDef(typeinfo, v:val)')
|
|
call filter(fileinfo.tags, '!s:IsTopLevelScopeDef(typeinfo, v:val)')
|
|
|
|
" Add children
|
|
for tag in scopedtags
|
|
let scopetype = typeinfo.kind2scope[tag.fields.kind]
|
|
let tag.children = s:GetChildTags(fileinfo.tags, scopetype,
|
|
\ '', tag.name, typeinfo)
|
|
endfor
|
|
|
|
let fileinfo.scopedtags = scopedtags
|
|
endif
|
|
|
|
let s:known_files[a:fname] = fileinfo
|
|
endfunction
|
|
|
|
" name<TAB>file<TAB>expattern;"fields
|
|
" fields: <TAB>name:value
|
|
" fields that are always present: kind, line
|
|
function! s:ParseTagline(line)
|
|
let parts = split(a:line, ';"')
|
|
|
|
let taginfo = {}
|
|
|
|
let basic_info = split(parts[0], '\t')
|
|
let taginfo.name = basic_info[0]
|
|
let taginfo.file = basic_info[1]
|
|
let taginfo.pattern = basic_info[2]
|
|
|
|
let taginfo.fields = {}
|
|
let fields = split(parts[1], '\t')
|
|
for field in fields
|
|
" can't use split() since the value can contain ':'
|
|
let delimit = stridx(field, ':')
|
|
let key = strpart(field, 0, delimit)
|
|
let val = strpart(field, delimit + 1)
|
|
let taginfo.fields[key] = val
|
|
endfor
|
|
|
|
return taginfo
|
|
endfunction
|
|
|
|
function! s:RenderContent(fname, ftype)
|
|
let tagbarwinnr = bufwinnr('__Tagbar__')
|
|
|
|
execute tagbarwinnr . 'wincmd w'
|
|
|
|
let lazyredraw_save = &lazyredraw
|
|
set lazyredraw
|
|
|
|
setlocal modifiable
|
|
|
|
silent! %delete _
|
|
|
|
if !s:IsValidFile(a:fname, a:ftype)
|
|
silent! put ='- File type not supported -'
|
|
setlocal nomodifiable
|
|
let &lazyredraw = lazyredraw_save
|
|
execute 'wincmd p'
|
|
return
|
|
endif
|
|
|
|
let typeinfo = s:known_types[a:ftype]
|
|
let fileinfo = s:known_files[a:fname]
|
|
|
|
" Print scoped tags if there are any
|
|
if has_key(fileinfo, 'scopedtags')
|
|
for tag in fileinfo.scopedtags
|
|
silent! put =tag.name . ' : ' . typeinfo.kind2scope[tag.fields.kind]
|
|
|
|
for childtag in tag.children
|
|
call s:PrintTag(childtag, 1, typeinfo)
|
|
endfor
|
|
|
|
silent! put _
|
|
endfor
|
|
endif
|
|
|
|
" Print non-scoped tags
|
|
for kind in typeinfo.kinds
|
|
let curtags = filter(copy(fileinfo.tags), 'v:val.fields.kind == kind[0]')
|
|
|
|
if empty(curtags)
|
|
continue
|
|
endif
|
|
|
|
silent! put =strpart(kind, 2)
|
|
|
|
for tag in curtags
|
|
silent! put =' ' . tag.name
|
|
endfor
|
|
|
|
silent! put _
|
|
endfor
|
|
|
|
setlocal nomodifiable
|
|
|
|
let &lazyredraw = lazyredraw_save
|
|
|
|
execute 'wincmd p'
|
|
endfunction
|
|
|
|
function! s:IsTopLevelScopeDef(typeinfo, tag)
|
|
let is_scope_def = 0
|
|
|
|
" Does the tag specify a scope?
|
|
if !has_key(a:typeinfo.kind2scope, a:tag.fields.kind)
|
|
return 0
|
|
endif
|
|
|
|
" Is the tag not inside of any scopes?
|
|
for scope in a:typeinfo.scopes
|
|
if has_key(a:tag.fields, scope)
|
|
return 0
|
|
endif
|
|
endfor
|
|
|
|
return 1
|
|
endfunction
|
|
|
|
function! s:GetChildTags(tags, pscopetype, pscope, pname, typeinfo)
|
|
if empty(a:pscope)
|
|
let curscope = a:pname
|
|
else
|
|
let curscope = a:pscope . a:typeinfo.sro . a:pname
|
|
endif
|
|
|
|
" Extract tags that are children of the given tag,
|
|
" removing them from the tag list
|
|
let is_child = 'has_key(v:val.fields, a:pscopetype) &&
|
|
\ v:val.fields[a:pscopetype] == curscope'
|
|
let childtags = filter(copy(a:tags), is_child)
|
|
call filter(a:tags, '!(' . is_child . ')')
|
|
|
|
" Recursively add children
|
|
for tag in childtags
|
|
if has_key(a:typeinfo.kind2scope, tag.fields.kind)
|
|
let curscopetype = a:typeinfo.kind2scope[tag.fields.kind]
|
|
let tag.children = s:GetChildTags(a:tags, curscopetype,
|
|
\ curscope, tag.name, a:typeinfo)
|
|
endif
|
|
endfor
|
|
|
|
return childtags
|
|
endfunction
|
|
|
|
function! s:PrintTag(tag, depth, typeinfo)
|
|
let taginfo = ''
|
|
|
|
if has_key(a:tag.fields, 'signature')
|
|
let taginfo .= a:tag.fields.signature
|
|
endif
|
|
if has_key(a:typeinfo.kind2scope, a:tag.fields.kind)
|
|
let taginfo .= ' : ' . a:typeinfo.kind2scope[a:tag.fields.kind]
|
|
endif
|
|
|
|
" Print tag indented according to depth
|
|
silent! put =repeat(' ', a:depth * 2) . a:tag.name . taginfo
|
|
|
|
" Recursively print children
|
|
if has_key(a:tag, 'children')
|
|
for childtag in a:tag.children
|
|
call s:PrintTag(childtag, a:depth + 1, a:typeinfo)
|
|
endfor
|
|
endif
|
|
endfunction
|
|
|
|
function! s:PrintWarningMsg(msg)
|
|
echohl WarningMsg
|
|
echomsg a:msg
|
|
echohl None
|
|
endfunction
|
|
|
|
command! -nargs=0 TagbarToggle call s:ToggleWindow()
|
|
command! -nargs=0 TagbarOpen call s:OpenWindow()
|
|
command! -nargs=0 TagbarClose call s:CloseWindow()
|
|
|
|
" vim: ts=8 sw=4 sts=4 et foldenable foldmethod=syntax foldcolumn=1
|