免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1630 | 回复: 2
打印 上一主题 下一主题

[Linux] 麻烦用过vim的指导一下: [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2014-01-15 11:08 |只看该作者 |倒序浏览

问题描述:当我 在用vim打开若干 C文件时,由于增加了几个函数,所以 用ctags -R更新了tags;
        但是vim貌似没有 更新tags文件,跳转不精确。
        因此,我想问一下,如何 在vim不关闭的情况下,来使得vim能够更新所加载的tags文件?

附:我用的是windows gvim7.2.

论坛徽章:
95
程序设计版块每日发帖之星
日期:2015-09-05 06:20:00程序设计版块每日发帖之星
日期:2015-09-17 06:20:00程序设计版块每日发帖之星
日期:2015-09-18 06:20:002015亚冠之阿尔艾因
日期:2015-09-18 10:35:08月度论坛发贴之星
日期:2015-09-30 22:25:002015亚冠之阿尔沙巴布
日期:2015-10-03 08:57:39程序设计版块每日发帖之星
日期:2015-10-05 06:20:00每日论坛发贴之星
日期:2015-10-05 06:20:002015年亚冠纪念徽章
日期:2015-10-06 10:06:482015亚冠之塔什干棉农
日期:2015-10-19 19:43:35程序设计版块每日发帖之星
日期:2015-10-21 06:20:00每日论坛发贴之星
日期:2015-09-14 06:20:00
2 [报告]
发表于 2014-01-15 20:15 |只看该作者
回复 1# youjujun


貌似不需要:
    http://stackoverflow.com/questions/4829800/reload-tags-file-vim

检查下其他错误,例如 tags 文件本身。

论坛徽章:
0
3 [报告]
发表于 2014-01-20 23:40 |只看该作者
用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-
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP