文章列表
在.vimrc中有如下配置
map <F10> :call Do_CsTag()<CR>
function Do_CsTag()
silent! execute “!ctags -R ‘.’”
if(executable(‘cscope’) && has(“cscope”) )
silent! execute “!find -L `pwd` -name ‘*.h’ -o -name ‘*.c’ -o -name ‘*.cpp’ -o -name ‘*.java’ -o -name ‘*.cs’ -o ...