mirror of
https://github.com/preservim/tagbar.git
synced 2024-11-26 02:13:44 +08:00
972 lines
27 KiB
VimL
972 lines
27 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
|
|
|
|
if !exists('g:tagbar_sort')
|
|
let g:tagbar_sort = 1
|
|
endif
|
|
|
|
function! s:InitTypes()
|
|
" Dictionary of the already processed files, index by file name with
|
|
" complete path.
|
|
" The entries are again dictionaries with the following fields:
|
|
" - mtime: File modification time
|
|
" - ftype: The vim file type
|
|
" - tags: List of the tags that are present in the file, sorted
|
|
" according to the value of 'g:tagbar_sort'
|
|
" - fline: Dictionary of the tags, indexed by line number in the file
|
|
" - tline: Dictionary of the tags, indexed by line number in the tagbar
|
|
let s:known_files = {}
|
|
|
|
let s:known_types = {}
|
|
|
|
let type_cpp = {}
|
|
let type_cpp.ctagstype = 'c++'
|
|
let type_cpp.scopes = [
|
|
\ 'namespace',
|
|
\ 'class',
|
|
\ 'struct',
|
|
\ 'enum',
|
|
\ 'union'
|
|
\ ]
|
|
let type_cpp.sro = '::'
|
|
let type_cpp.kinds = [
|
|
\ 'd:macros',
|
|
\ 'n:namespaces',
|
|
\ 'c:classes',
|
|
\ 's:structs',
|
|
\ 'g:enum',
|
|
\ 'e:enumerators',
|
|
\ 'u:unions',
|
|
\ 't:typedefs',
|
|
\ 'p:prototypes',
|
|
\ 'f:functions',
|
|
\ 'm:members',
|
|
\ 'v:variables'
|
|
\ ]
|
|
let type_cpp.kind2scope = {
|
|
\ 'n' : 'namespace',
|
|
\ 'c' : 'class',
|
|
\ 's' : 'struct',
|
|
\ 'g' : 'enum',
|
|
\ 'u' : 'union'
|
|
\ }
|
|
let type_cpp.scope2kind = {
|
|
\ 'namespace' : 'n',
|
|
\ 'class' : 'c',
|
|
\ 'struct' : 's',
|
|
\ 'enum' : 'g',
|
|
\ 'union' : 'u'
|
|
\ }
|
|
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 type_python.scope2kind = {
|
|
\ 'class' : 'c',
|
|
\ 'function' : 'f'
|
|
\ }
|
|
let s:known_types.python = type_python
|
|
|
|
call extend(s:known_types, g:tagbar_types)
|
|
|
|
" Create a dictionary of the kind order for fast
|
|
" access in sorting functions
|
|
for type in values(s:known_types)
|
|
let i = 0
|
|
let type.kinddict = {}
|
|
for kind in type.kinds
|
|
let type.kinddict[kind[0]] = i
|
|
let i += 1
|
|
endfor
|
|
endfor
|
|
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 '
|
|
exe '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 nowrap
|
|
setlocal winfixwidth
|
|
|
|
if exists('+relativenumber')
|
|
setlocal norelativenumber
|
|
endif
|
|
|
|
setlocal foldenable
|
|
setlocal foldminlines=0
|
|
setlocal foldmethod=manual
|
|
setlocal foldlevel=9999
|
|
setlocal foldcolumn=1
|
|
setlocal foldtext=v:folddashes.getline(v:foldstart)
|
|
|
|
" Variable for saving the current file for functions that are called from
|
|
" the tagbar window
|
|
let s:current_file = ''
|
|
|
|
" Script-local variable needed since compare functions can't
|
|
" take extra arguments
|
|
let s:compare_typeinfo = {}
|
|
|
|
let s:is_maximized = 0
|
|
let s:short_help = 1
|
|
|
|
syntax match Comment '^" .*' " Comments
|
|
syntax match Identifier '^[^: ]\+$' " Non-scoped kinds
|
|
syntax match Title '[^:(* ]\+\ze\*\? :' " Scope names
|
|
syntax match Type ': \zs.*' " Scope types
|
|
syntax match SpecialKey '(.*)' " Signatures
|
|
syntax match NonText '\*\ze :' " Pseudo-tag identifiers
|
|
|
|
if has('balloon_eval')
|
|
setlocal balloonexpr=TagbarBalloonExpr()
|
|
set ballooneval
|
|
endif
|
|
|
|
let cpoptions_save = &cpoptions
|
|
set cpoptions&vim
|
|
|
|
nnoremap <script> <silent> <buffer> s :call <SID>ToggleSort()<CR>
|
|
nnoremap <script> <silent> <buffer> <CR> :call <SID>JumpToTag()<CR>
|
|
nnoremap <script> <silent> <buffer> <2-LeftMouse>
|
|
\ :call <SID>JumpToTag()<CR>
|
|
nnoremap <script> <silent> <buffer> <Space> :call <SID>ShowPrototype()<CR>
|
|
nnoremap <script> <silent> <buffer> x :call <SID>ZoomWindow()<CR>
|
|
nnoremap <script> <silent> <buffer> q :close<CR>
|
|
nnoremap <script> <silent> <buffer> <F1> :call <SID>ToggleHelp()<CR>
|
|
|
|
augroup TagbarAutoCmds
|
|
autocmd!
|
|
autocmd BufEnter __Tagbar__ nested call s:QuitIfOnlyWindow()
|
|
autocmd BufUnload __Tagbar__ call s:CleanUp()
|
|
autocmd CursorHold __Tagbar__ call s:ShowPrototype()
|
|
|
|
" autocmd TabEnter * silent call s:Tlist_Refresh_Folds()
|
|
autocmd BufEnter,CursorHold * silent call s:AutoUpdate(
|
|
\ fnamemodify(bufname('%'), ':p'))
|
|
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('%')
|
|
execute 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:ZoomWindow()
|
|
if s:is_maximized
|
|
execute 'vert resize ' . g:tagbar_width
|
|
let s:is_maximized = 0
|
|
else
|
|
vert resize
|
|
let s:is_maximized = 1
|
|
endif
|
|
endfunction
|
|
|
|
function! s:CleanUp()
|
|
silent! autocmd! TagbarAutoCmds
|
|
unlet s:current_file
|
|
unlet s:is_maximized
|
|
unlet s:compare_typeinfo
|
|
unlet s:short_help
|
|
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:AutoUpdate(fname)
|
|
call s:RefreshContent(a:fname)
|
|
|
|
let tagbarwinnr = bufwinnr('__Tagbar__')
|
|
if tagbarwinnr == -1 || &filetype == 'tagbar'
|
|
return
|
|
endif
|
|
|
|
if !has_key(s:known_files, a:fname)
|
|
return
|
|
endif
|
|
|
|
let s:current_file = a:fname
|
|
|
|
call s:HighlightTag(a:fname)
|
|
endfunction
|
|
|
|
function! s:RefreshContent(fname)
|
|
" Don't do anything if we're in the tagbar window
|
|
if &filetype == 'tagbar'
|
|
return
|
|
endif
|
|
|
|
if has_key(s:known_files, a:fname)
|
|
if s:known_files[a:fname].mtime != getftime(a:fname)
|
|
call s:ProcessFile(a:fname, &filetype)
|
|
endif
|
|
else
|
|
call s:ProcessFile(a:fname, &filetype)
|
|
endif
|
|
|
|
let tagbarwinnr = bufwinnr('__Tagbar__')
|
|
|
|
if tagbarwinnr != -1
|
|
call s:RenderContent(a: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 - '
|
|
let ctags_args .= ' --format=2 '
|
|
let ctags_args .= ' --excmd=pattern '
|
|
let ctags_args .= ' --fields=nksSaz '
|
|
let ctags_args .= ' --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.ftype = a:ftype
|
|
let fileinfo.tags = []
|
|
let fileinfo.fline = {}
|
|
let fileinfo.tline = {}
|
|
|
|
for line in rawtaglist
|
|
let parts = split(line, ';"')
|
|
if len(parts) == 2 " Is a valid tag line
|
|
let taginfo = s:ParseTagline(parts[0], parts[1])
|
|
let fileinfo.fline[taginfo.fields.line] = taginfo
|
|
call add(fileinfo.tags, taginfo)
|
|
endif
|
|
endfor
|
|
|
|
if has_key(typeinfo, 'scopes') && !empty(typeinfo.scopes)
|
|
let processedtags = []
|
|
|
|
for scope in typeinfo.scopes
|
|
call s:AddChildren(fileinfo.tags, processedtags, '',
|
|
\ '', scope, 1, typeinfo)
|
|
endfor
|
|
|
|
call extend(fileinfo.tags, processedtags)
|
|
endif
|
|
|
|
let s:compare_typeinfo = typeinfo
|
|
|
|
if g:tagbar_sort
|
|
call s:SortTags(fileinfo.tags, 's:CompareByKind')
|
|
else
|
|
call s:SortTags(fileinfo.tags, 's:CompareByLine')
|
|
endif
|
|
|
|
let s:known_files[a:fname] = fileinfo
|
|
endfunction
|
|
|
|
" Structure of a tag line:
|
|
" tagname<TAB>filename<TAB>expattern;"fields
|
|
" fields: <TAB>name:value
|
|
" fields that are always present: kind, line
|
|
function! s:ParseTagline(part1, part2)
|
|
let taginfo = {}
|
|
|
|
let basic_info = split(a:part1, '\t')
|
|
let taginfo.name = basic_info[0]
|
|
let taginfo.file = basic_info[1]
|
|
|
|
let pattern = basic_info[2]
|
|
let start = 2 " skip the slash and the ^
|
|
let end = strlen(pattern) - 1
|
|
if pattern[end - 1] == '$'
|
|
let end -= 1
|
|
let dollar = '\$'
|
|
else
|
|
let dollar = ''
|
|
endif
|
|
let pattern = strpart(pattern, start, end - start)
|
|
let taginfo.pattern = '\V\^' . pattern . dollar
|
|
let prototype = substitute(pattern, '^[[:space:]]\+', '', '')
|
|
let prototype = substitute(prototype, '[[:space:]]\+$', '', '')
|
|
let taginfo.prototype = prototype
|
|
|
|
let taginfo.fields = {}
|
|
let fields = split(a:part2, '\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
|
|
|
|
" Extract children from the tag list and correctly add it to their parents.
|
|
" Unfortunately the parents aren't necessarily actually there -- for example,
|
|
" in C++ a class can be defined in a header file and implemented in a .cpp
|
|
" file (so the class itself doesn't appear in the .cpp file and thus doesn't
|
|
" genereate a tag). Another example are anonymous
|
|
" namespaces/structs/enums/unions that also don't get a tag themselves. These
|
|
" tags are thus called 'pseudo-tags' in Tagbar.
|
|
" This is probably the most cryptic function since it has to deal with things
|
|
" that aren't actually there and several corner cases. Try not to think about
|
|
" it too much.
|
|
function! s:AddChildren(tags, processedtags, curpath,
|
|
\ pscope, scope, depth, typeinfo)
|
|
let is_child = 'has_key(v:val.fields, a:scope)'
|
|
if !empty(a:curpath)
|
|
let is_child .= ' && s:PathMatches(v:val.fields[a:scope],
|
|
\ a:curpath, a:typeinfo.sro)'
|
|
endif
|
|
|
|
let is_cur_child = is_child . ' && len(split(v:val.fields[a:scope],
|
|
\ a:typeinfo.sro)) == a:depth'
|
|
let curchildren = filter(copy(a:tags), is_cur_child)
|
|
if !empty(curchildren)
|
|
call filter(a:tags, '!(' . is_cur_child . ')')
|
|
endif
|
|
|
|
" 'curchildren' are children at the current depth
|
|
if !empty(curchildren)
|
|
for child in curchildren
|
|
let is_parent = 'has_key(a:typeinfo.kind2scope,
|
|
\ v:val.fields.kind) &&
|
|
\ a:typeinfo.kind2scope[v:val.fields.kind] == a:scope &&
|
|
\ s:GetFullTagPath(v:val, a:typeinfo) == child.fields[a:scope]'
|
|
let parentlist = filter(copy(a:processedtags), is_parent)
|
|
if !empty(parentlist)
|
|
call filter(a:processedtags, '!(' . is_parent . ')')
|
|
else
|
|
let parentlist = filter(copy(a:tags), is_parent)
|
|
if !empty(parentlist)
|
|
call filter(a:tags, '!(' . is_parent . ')')
|
|
endif
|
|
endif
|
|
|
|
" If we don't have a parent at this point it must be a pseudo-tag
|
|
if empty(parentlist)
|
|
let parentname = substitute(child.fields[a:scope],
|
|
\ a:curpath, '', '')
|
|
let parentname = substitute(parentname,
|
|
\ '^' . a:typeinfo.sro, '', '')
|
|
let parent = {}
|
|
let parent.name = parentname
|
|
let parent.fields = {}
|
|
let parent.fields.kind = a:typeinfo.scope2kind[a:scope]
|
|
let parent.fields.line = 0
|
|
if a:pscope != ''
|
|
let parentscope = substitute(a:curpath,
|
|
\ parentname, '', '')
|
|
let parentscope = substitute(parentscope,
|
|
\ a:typeinfo.sro . '$', '', '')
|
|
let parent.fields[a:pscope] = parentscope
|
|
endif
|
|
let parent.children = [child]
|
|
else
|
|
let parent = parentlist[0]
|
|
if has_key(parent, 'children')
|
|
call add(parent.children, child)
|
|
else
|
|
let parent.children = [child]
|
|
endif
|
|
endif
|
|
|
|
call add(a:processedtags, parent)
|
|
endfor
|
|
|
|
" Recursively add children
|
|
for tag in a:processedtags
|
|
if !has_key(tag, 'children')
|
|
continue
|
|
endif
|
|
|
|
if empty(a:curpath)
|
|
let fullpath = tag.name
|
|
else
|
|
let fullpath = a:curpath . a:typeinfo.sro . tag.name
|
|
endif
|
|
let parentscope = a:typeinfo.kind2scope[tag.fields.kind]
|
|
for childscope in a:typeinfo.scopes
|
|
call s:AddChildren(a:tags, tag.children, fullpath,
|
|
\ parentscope, childscope, a:depth + 1, a:typeinfo)
|
|
endfor
|
|
endfor
|
|
endif
|
|
|
|
" Grandchildren are children that are not direct ancestors of a tag. This
|
|
" can happen when pseudo-tags are in between.
|
|
let is_grandchild = is_child . ' && len(split(v:val.fields[a:scope],
|
|
\ a:typeinfo.sro)) > a:depth'
|
|
let grandchildren = filter(copy(a:tags), is_grandchild)
|
|
|
|
if !empty(grandchildren)
|
|
for childscope in a:typeinfo.scopes
|
|
call s:AddChildren(a:tags, a:processedtags, a:curpath,
|
|
\ a:pscope, childscope, a:depth + 1, a:typeinfo)
|
|
endfor
|
|
endif
|
|
endfunction
|
|
|
|
function! s:GetFullTagPath(tag, typeinfo)
|
|
let cur_scope = ''
|
|
|
|
for scope in a:typeinfo.scopes
|
|
if has_key(a:tag.fields, scope)
|
|
let cur_scope = scope
|
|
break
|
|
endif
|
|
endfor
|
|
|
|
if cur_scope != ''
|
|
return a:tag.fields[cur_scope] . a:typeinfo.sro . a:tag.name
|
|
else
|
|
return a:tag.name
|
|
endif
|
|
endfunction
|
|
|
|
function! s:PathMatches(scopename, curpath, sro)
|
|
let index = strridx(a:scopename, a:sro)
|
|
let parentpath = strpart(a:scopename, 0, index)
|
|
return parentpath == a:curpath
|
|
endfunction
|
|
|
|
function! s:SortTags(tags, comparemethod)
|
|
call sort(a:tags, a:comparemethod)
|
|
|
|
for tag in a:tags
|
|
if has_key(tag, 'children')
|
|
call s:SortTags(tag.children, a:comparemethod)
|
|
endif
|
|
endfor
|
|
endfunction
|
|
|
|
function! s:CompareByKind(tag1, tag2)
|
|
let typeinfo = s:compare_typeinfo
|
|
|
|
if typeinfo.kinddict[a:tag1.fields.kind] <
|
|
\ typeinfo.kinddict[a:tag2.fields.kind]
|
|
return -1
|
|
elseif typeinfo.kinddict[a:tag1.fields.kind] >
|
|
\ typeinfo.kinddict[a:tag2.fields.kind]
|
|
return 1
|
|
else
|
|
if a:tag1.name <= a:tag2.name
|
|
return -1
|
|
else
|
|
return 1
|
|
endif
|
|
endif
|
|
endfunction
|
|
|
|
function! s:CompareByLine(tag1, tag2)
|
|
return a:tag1.fields.line - a:tag2.fields.line
|
|
endfunction
|
|
|
|
function! s:RenderContent(fname, ftype)
|
|
let tagbarwinnr = bufwinnr('__Tagbar__')
|
|
|
|
if &filetype == 'tagbar'
|
|
let in_tagbar = 1
|
|
else
|
|
let in_tagbar = 0
|
|
execute tagbarwinnr . 'wincmd w'
|
|
endif
|
|
|
|
let lazyredraw_save = &lazyredraw
|
|
set lazyredraw
|
|
|
|
setlocal modifiable
|
|
|
|
silent! %delete _
|
|
|
|
call s:PrintHelp()
|
|
|
|
if !s:IsValidFile(a:fname, a:ftype)
|
|
silent! put ='- File type not supported -'
|
|
|
|
let s:current_file = ''
|
|
|
|
setlocal nomodifiable
|
|
let &lazyredraw = lazyredraw_save
|
|
|
|
if !in_tagbar
|
|
execute 'wincmd p'
|
|
endif
|
|
|
|
return
|
|
endif
|
|
|
|
let typeinfo = s:known_types[a:ftype]
|
|
let fileinfo = s:known_files[a:fname]
|
|
|
|
" Print tags
|
|
for kind in typeinfo.kinds
|
|
let curtags = filter(copy(fileinfo.tags),
|
|
\ 'v:val.fields.kind == kind[0]')
|
|
|
|
if empty(curtags)
|
|
continue
|
|
endif
|
|
|
|
if has_key(typeinfo.kind2scope, kind[0])
|
|
" Scoped tags
|
|
for tag in curtags
|
|
let taginfo = ''
|
|
|
|
if tag.fields.line == 0 " Tag is a pseudo-tag
|
|
let taginfo .= '*'
|
|
endif
|
|
if has_key(tag.fields, 'signature')
|
|
let taginfo .= tag.fields.signature
|
|
endif
|
|
let taginfo .= ' : ' . typeinfo.kind2scope[kind[0]]
|
|
|
|
silent! put =tag.name . taginfo
|
|
|
|
" Save the current tagbar line in the tag for easy
|
|
" highlighting access
|
|
let curline = line('.')
|
|
let tag.tline = curline
|
|
let fileinfo.tline[curline] = tag
|
|
|
|
if has_key(tag, 'children')
|
|
for childtag in tag.children
|
|
call s:PrintTag(childtag, 1, fileinfo, typeinfo)
|
|
endfor
|
|
endif
|
|
|
|
silent! put _
|
|
endfor
|
|
else
|
|
" Non-scoped tags
|
|
silent! put =strpart(kind, 2)
|
|
|
|
for tag in curtags
|
|
let taginfo = ''
|
|
|
|
if has_key(tag.fields, 'signature')
|
|
let taginfo .= tag.fields.signature
|
|
endif
|
|
|
|
silent! put =' ' . tag.name . taginfo
|
|
|
|
" Save the current tagbar line in the tag for easy
|
|
" highlighting access
|
|
let curline = line('.')
|
|
let tag.tline = curline
|
|
let fileinfo.tline[curline] = tag
|
|
endfor
|
|
|
|
|
|
silent! put _
|
|
endif
|
|
endfor
|
|
|
|
setlocal nomodifiable
|
|
|
|
let &lazyredraw = lazyredraw_save
|
|
|
|
if !in_tagbar
|
|
execute 'wincmd p'
|
|
endif
|
|
endfunction
|
|
|
|
function! s:PrintHelp()
|
|
if s:short_help
|
|
call append(0, '" Press F1 for help')
|
|
else
|
|
call append(0, '" <Enter> : Jump to tag definition')
|
|
call append(1, '" <Space> : Display tag prototype')
|
|
call append(2, '" s : Toggle sort')
|
|
call append(3, '" x : Zoom window in/out')
|
|
call append(4, '" q : Close window')
|
|
call append(5, '" <F1> : Remove help')
|
|
endif
|
|
endfunction
|
|
|
|
function! s:PrintTag(tag, depth, fileinfo, typeinfo)
|
|
let taginfo = ''
|
|
|
|
if a:tag.fields.line == 0 " Tag is a pseudo-tag
|
|
let taginfo .= '*'
|
|
endif
|
|
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
|
|
|
|
" Save the current tagbar line in the tag for easy
|
|
" highlighting access
|
|
let curline = line('.')
|
|
let a:tag.tline = curline
|
|
let a:fileinfo.tline[curline] = a:tag
|
|
|
|
" Recursively print children
|
|
if has_key(a:tag, 'children')
|
|
for childtag in a:tag.children
|
|
call s:PrintTag(childtag, a:depth + 1, a:fileinfo, a:typeinfo)
|
|
endfor
|
|
endif
|
|
endfunction
|
|
|
|
function! s:HighlightTag(fname)
|
|
let fileinfo = s:known_files[a:fname]
|
|
|
|
let curline = line('.')
|
|
|
|
let tagline = 0
|
|
|
|
" If a tag appears in a file more than once (for example namespaces in
|
|
" C++) only one of them has a 'tline' entry and can thus be highlighted.
|
|
" The only way to solve this would be to go over the whole tag list again,
|
|
" making everything slower. Since this should be a rare occurence and
|
|
" highlighting isn't /that/ important ignore it for now.
|
|
for line in range(curline, 1, -1)
|
|
if has_key(fileinfo.fline, line) &&
|
|
\ has_key(fileinfo.fline[line], 'tline')
|
|
let tagline = fileinfo.fline[line].tline
|
|
break
|
|
endif
|
|
endfor
|
|
|
|
let eventignore_save = &eventignore
|
|
set eventignore=all
|
|
|
|
let tagbarwinnr = bufwinnr('__Tagbar__')
|
|
execute tagbarwinnr . 'wincmd w'
|
|
|
|
match none
|
|
|
|
if tagline == 0
|
|
execute 1
|
|
call winline()
|
|
execute 'wincmd p'
|
|
let &eventignore = eventignore_save
|
|
return
|
|
endif
|
|
|
|
" Go to the line containing the tag
|
|
execute tagline
|
|
|
|
if foldclosed('.') != -1
|
|
.foldopen!
|
|
endif
|
|
|
|
" Make sure the tag is visible in the window
|
|
call winline()
|
|
|
|
let pattern = '/^\%' . tagline . 'l\s*\zs[^( ]\+\ze/'
|
|
execute 'match Search ' . pattern
|
|
|
|
execute 'wincmd p'
|
|
|
|
let &eventignore = eventignore_save
|
|
endfunction
|
|
|
|
function! s:JumpToTag()
|
|
let taginfo = s:GetTagInfo(line('.'))
|
|
|
|
if empty(taginfo)
|
|
return
|
|
endif
|
|
|
|
execute 'wincmd p'
|
|
|
|
" Jump to the line where the tag is defined. Don't use the search pattern
|
|
" since it doesn't take the scope into account and thus can fail if tags
|
|
" with the same name are defined in different scopes (e.g. classes)
|
|
execute taginfo.fields.line
|
|
|
|
" Center the tag in the window
|
|
normal! z.
|
|
|
|
if foldclosed('.') != -1
|
|
.foldopen!
|
|
endif
|
|
|
|
if g:tagbar_autoclose
|
|
call s:CloseWindow()
|
|
else
|
|
call s:HighlightTag(s:current_file)
|
|
endif
|
|
endfunction
|
|
|
|
function! s:ShowPrototype()
|
|
let taginfo = s:GetTagInfo(line('.'))
|
|
|
|
if empty(taginfo)
|
|
return
|
|
endif
|
|
|
|
echo taginfo.prototype
|
|
endfunction
|
|
|
|
function! TagbarBalloonExpr()
|
|
let taginfo = s:GetTagInfo(v:beval_lnum)
|
|
|
|
if empty(taginfo)
|
|
return
|
|
endif
|
|
|
|
return taginfo.prototype
|
|
endfunction
|
|
|
|
" Return the info dictionary of the tag on the specified line. If the line
|
|
" does not contain a valid tag (for example because it is empty or only
|
|
" contains a pseudo-tag) return an empty dictionary.
|
|
function! s:GetTagInfo(linenr)
|
|
if !has_key(s:known_files, s:current_file)
|
|
return {}
|
|
endif
|
|
|
|
" Don't do anything in empty and comment lines
|
|
let curline = getline(a:linenr)
|
|
if curline =~ '^\s*$' || curline[0] == '"'
|
|
return {}
|
|
endif
|
|
|
|
let fileinfo = s:known_files[s:current_file]
|
|
|
|
" Check if there is a tag on the current line
|
|
if !has_key(fileinfo.tline, a:linenr)
|
|
return {}
|
|
endif
|
|
|
|
let taginfo = fileinfo.tline[a:linenr]
|
|
|
|
" Check if the current tag is not a pseudo-tag
|
|
if taginfo.fields.line == 0
|
|
return {}
|
|
endif
|
|
|
|
return taginfo
|
|
endfunction
|
|
|
|
function! s:ToggleSort()
|
|
if !has_key(s:known_files, s:current_file)
|
|
return
|
|
endif
|
|
|
|
let curline = line('.')
|
|
|
|
let fileinfo = s:known_files[s:current_file]
|
|
|
|
match none
|
|
|
|
let g:tagbar_sort = !g:tagbar_sort
|
|
|
|
let s:compare_typeinfo = s:known_types[fileinfo.ftype]
|
|
|
|
if g:tagbar_sort
|
|
call s:SortTags(fileinfo.tags, 's:CompareByKind')
|
|
else
|
|
call s:SortTags(fileinfo.tags, 's:CompareByLine')
|
|
endif
|
|
|
|
call s:RenderContent(s:current_file, fileinfo.ftype)
|
|
|
|
execute curline
|
|
endfunction
|
|
|
|
function! s:ToggleHelp()
|
|
let s:short_help = !s:short_help
|
|
|
|
if s:current_file == ''
|
|
call s:RenderContent(s:current_file, '')
|
|
else
|
|
let fileinfo = s:known_files[s:current_file]
|
|
call s:RenderContent(s:current_file, fileinfo.ftype)
|
|
endif
|
|
|
|
execute 1
|
|
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
|