- 论坛徽章:
- 0
|
用gtags吧,比ctags好多了
再在.vimrc加上一个函数
function! g:UpdateGtags()
exec 'silent !global -u'
endfunction
nmap <F2> :call g:UpdateGtags()<CR><ENTER>
这样就ok了哦
给你一个gnu global的完整配置吧
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" cscope && global
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
function! g:UpdateGtags()
exec 'silent !global -u'
endfunction
nmap <leader>eg :edit gtags.files<CR>
nmap <F2> :call g:UpdateGtags()<CR><ENTER>
function! EditCurDir()
let dir = expand('%:p:h')
exe 'edit ' . dir
endfunction
function! CdCurDir()
let dir = expand('%:p:h')
exe 'cd ' . dir
endfunction
nmap <leader>ed :call EditCurDir()<CR>
nmap <leader>cd :call CdCurDir()<CR>
nmap <leader>ad :call g:GtagsCscope()<CR>
" To use 'vim -t ', ':tag' and '<C-]>'
set cscopetag
let g:GtagsCscope_Auto_Load = 1
let g:GtagsCscope_Absolute_Path = 1
"let g:GtagsCscope_Auto_Map = 1
"let g:GtagsCscope_Use_Old_Key_Map = 1
function! GtagsCscopeFind(arg1, arg2)
let w = expand("<cword>") " 在当前光标位置抓词
exe a:arg1 . ' f ' . a:arg2 . ' ' . w
"exe 'botright copen'
endfunction
nmap <C-\>s :call GtagsCscopeFind('cs', 's')<CR><C-k><C-w>l
nmap <C-\>g :call GtagsCscopeFind('cs', 'g')<CR><C-k><C-w>l
nmap <C-\>c :call GtagsCscopeFind('cs', 'c')<CR><C-k><C-w>l
nmap <C-\>t :call GtagsCscopeFind('cs', 't')<CR><C-k><C-w>l
nmap <C-\>e :call GtagsCscopeFind('cs', 'e')<CR><C-k><C-w>l
nmap <C-\>f :call GtagsCscopeFind('cs', 'f')<CR><C-k><C-w>l
nmap <C-\>i :call GtagsCscopeFind('cs', 'i')<CR><C-k><C-w>l
nmap <C-_>s :call GtagsCscopeFind('scs', 's')<CR><C-w>l
nmap <C-_>g :call GtagsCscopeFind('scs', 'g')<CR><C-w>l
nmap <C-_>c :call GtagsCscopeFind('scs', 'c')<CR><C-w>l
nmap <C-_>t :call GtagsCscopeFind('scs', 't')<CR><C-w>l
nmap <C-_>e :call GtagsCscopeFind('scs', 'e')<CR><C-w>l
nmap <C-_>f :call GtagsCscopeFind('scs', 'f')<CR><C-w>l
nmap <C-_>i :call GtagsCscopeFind('scs', 'i')<CR><C-w>l
set cscopequickfix=s-,c-,d-,i-,t-,e-,f-
|
|