红联Linux门户
Linux帮助

VIM cscope nmap不能工作

发布时间:2016-11-07 10:41:28来源:linux网站作者:飞翔de刺猬
cscope为*nix平台下的功能强大的本文搜索工具,其安装和使用说明可以很方便的找到,本文所描述的问题为:Ubuntu 14.04不能正常使用vimrc下配置的cscope nmap快捷键的问题。
 
操作系统版本:Ubuntu 14.04
vim: 版本 7.4.52
vim插件:cscope_maps.vim
 
将cscope_maps.vim中的快件配置拷贝到~/.vimrc中,如下:
nmap <C-\>s :cs find s <C-R>=expand("<cword>")<CR><CR>  
nmap <C-\>g :cs find g <C-R>=expand("<cword>")<CR><CR>  
nmap <C-\>c :cs find c <C-R>=expand("<cword>")<CR><CR>  
nmap <C-\>t :cs find t <C-R>=expand("<cword>")<CR><CR>  
nmap <C-\>e :cs find e <C-R>=expand("<cword>")<CR><CR>  
nmap <C-\>f :cs find f <C-R>=expand("<cfile>")<CR><CR>  
nmap <C-\>i :cs find i ^<C-R>=expand("<cfile>")<CR>$<CR>  
nmap <C-\>d :cs find d <C-R>=expand("<cword>")<CR><CR>  
重启vim,尝试使用如上的组合快捷键,Not working!
 
问题解决方法:
经过分析发现,ubuntu的系统的键盘设置中禁用了“组合键”的使用,修改为你想要的方式即可,我的为"左Ctrl"。如图:
VIM cscope nmap不能工作
OK,终于可以顺畅的使用cscope了!
 
本文永久更新地址:http://www.linuxdiyf.com/linux/25787.html