本文主要是介绍windows上vim+tags+taglist+cscope配置,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
一 背景:
linux环境下有两大编译环境,一个是本文说的vim,一个是emacs;在windows下vs很好用,但也有一个问题,当代码量很多的时候,vs很占资源,机器拖的很慢,并且操作起来反应也很慢;有时候,vs会莫名其妙的卡住,不得不等或重新启动;
vim这种就不会有vs的问题,但是学习起来比较费劲;vim编辑环境是有很多工具组合在一起的,你想要什么功能,就安装什么样的工具,最终继承一个功能完毕的编译环境;而不像vs一样,什么都在一块,不管你需要不需要,所以用起来不流畅;
vim: 是单纯的编辑工具;
ctags: 是符号定位工具,如定位某个函数在哪里定义;
taglist:是符号列表显示工具,将程序中的函数,结构体,类等在一个窗口中列出来;
cscope: 是符号查找工具,查找范围是在所设定的整个目录下,功能类似于vs中的在整个工程中查找某个字符串,函数等; 还可以查找函数调用关系,总之功能很强大;
二 安装:
下面的配置是基于windows的,相应的文件下载链接可通过google或baidu查找;
1 下载gvim(windows上的vim),安装;
2 下载ctags(windows上的),将解压目录中的ctags.exe
copy到vim安装目录下(与vim.exe同级目录); 这样vim可以执行ctags命令;
3 下载taglist(windows版本),解压,将其中的taglist.vim
copy到vim安装目录下的plugin目录里面;
4 下载cscope(windows版本),将其中的sort和cscope.exe文件copy到vim安装目录下(与vim.exe同级目录);
(widnows)http://code.google.com/p/cscope-win32/
(linux) http://sourceforge.net/projects/cscope/files/?source=navbar
三 配置:
经过上面步骤,安装步骤完成,下面说如何配置;
vim:在vim有一个_vimrc(linux下是.vimrc)文件,该文件作用是最vim的设置,如高亮显示方式,对齐设定等,还有设定如何配置ctags,taglist,和cscope等;
典型配置如下(双引号开头表示注释,我参考网上资料组合而成的一个配置,这个配置是按照自己喜好随便写):
“---------------start-----------------------------
set makeprg=nmake\ -f\ makefile.mak
set tags=tags
set tags+=./tags “add current directory'sgenerated tags file
“ This line should not be removed as itensures that various options are
“ properly set to work with the Vim-relatedpackages available in Debian.
“ Uncomment the next line to make Vim moreVi-compatible
“ NOTE: debian.vim sets 'nocompatible'.Setting 'compatible' changes numerous
“ options, so any other options should beset AFTER setting 'compatible'.
set nocompatible
“ Vim5 and later versions support syntaxhighlighting. Uncommenting the
“ following enables syntax highlighting bydefault.
if has(“syntax”)
syntax on “ 语法高亮
endif
colorscheme ron “ elflord ron peachpuff default 设置配色方案
“ detect file type
filetype on
filetype plugin on
“ If using a dark background within theediting area and syntax highlighting
“ turn on this option as well
set background=dark
“ Uncomment the following to have Vim jumpto the last position when
“ reopening a file
if has(“autocmd”)
auBufReadPost * if line(“'\”“) > 1 && line(“'\”“) <= line(“$”) |exe “normal! g'\”“ | endif
“haveVim load indentation rules and plugins according to the detected filetype
filetype plugin indent on
endif
“ The following are commented out as theycause vim to behave a lot
“ differently from regular Vi. They arehighly recommended though.
“set ignorecase “ 搜索模式里忽略大小写
“set smartcase “ 如果搜索模式包含大写字符,不使用 'ignorecase' 选项。只有在输入搜索模式并且打开 'ignorecase' 选项时才会使用。
set autowrite “ 自动把内容写回文件: 如果文件被修改过,在每个:next、:rewind、:last、:first、:previous、:stop、:suspend、:tag、:!、:make、CTRL-] 和 CTRL-^命令时进行;用 :buffer、CTRL-O、CTRL-I、'{A-Z0-9} 或 `{A-Z0-9} 命令转到别的文件时亦然。
set autoindent “ 设置自动对齐(缩进):即每行的缩进值与上一行相等;使用 noautoindent 取消设置
“set smartindent “ 智能对齐方式
set tabstop=4 “ 设置制表符(tab键)的宽度
set softtabstop=4 “ 设置软制表符的宽度
set shiftwidth=4 “ (自动) 缩进使用的4个空格
set cindent “ 使用 C/C++ 语言的自动缩进方式
setcinoptions={0,1s,t0,n-2,p2s,(03s,=.5s,>1s,=1s,:1s “设置C/C++语言的具体缩进方式
“set backspace=2 “ 设置退格键可用
set showmatch “ 设置匹配模式,显示匹配的括号
set linebreak “ 整词换行
set whichwrap=b,s,<,>,[,] “ 光标从行首和行末时可以跳到另一行去
“set hidden “ Hide buffers when they areabandoned
set mouse=a “ Enable mouse usage (allmodes) “使用鼠标
set number “ Enable line number “显示行号
“set previewwindow “ 标识预览窗口
set history=50 “ set command history to 50 “历史记录50条
“--状态行设置--
set laststatus=2 “ 总显示最后一个窗口的状态行;设为1则窗口数多于一个的时候显示最后一个窗口的状态行;0不显示最后一个窗口的状态行
set ruler
“--命令行设置--
set showcmd “ 命令行显示输入的命令
set showmode “ 命令行显示vim当前模式
“--find setting--
set incsearch “ 输入字符串就显示匹配点
set hlsearch
“--------------end-----------------------------
vim: 该工具有许多命令,可以通过安装目录下doc/目录下的txt文件来学习,重点看usr_xx.txt,看完一遍就可以正常使用了;
ctags: 在你的放代码的顶层目录下运行:ctags -R,会生成一个ctags文件,vim就是靠这个文件来定位符号,所以如果你改代码了,要重新执行上面命令,重新启动vim才有效果;然后再_vimrc文件中加入:
set tags=tags
set tags+=./tags
vim启动时就可以找到这个ctags文件了;
taglist:在vim窗口normal模式下,输入”:Tlist”,会显示taglist窗口;通过ctrl+w在代码窗口和该窗口进行切换;
cscope:在vim的normal模式下也可以执行dos命令,做法是在dos命令前加”!”,如”:cd d:/”; 在vim的normal模式下输入dos命令,切换到你的代码顶层目录,如”:cd d:/work”;
然后在vim中执行”:!cscope –Rbq”,会在”d:/work”目录下生成一个”cscope.out”数据库文件,cscope就靠它了;
在vim中执行”:cs add d:/work/cscope.out d:/work”,使vim与cscope数据库连接,并设定查找目录;经过上面步骤,环境配置好了;
四 编译调试:
设置vim的编译环境:
在_vimrc中添加内容:
set makeprg=nmake\ -f\makefile.mak,意思是用过nmake运行makefile.mak文件;windows下对应的是nmake,linux下对一个make,makefile.mak是你代码顶层目录的你的makefile文件;
需要说明的是:
在vim启动时,要通过”cd d:/work”切换到你的工作目录下才行;
在vim中运行”:pwd”会显示出你当前的工作目录;
经过上面配置还可能出现系统找不到vs库的情况,通过在环境变量中添加如下变量即可解决(目录更据你自己安装情况定);
INCLUDE
C:\Program Files\Microsoft Visual Studio9.0\VC\include;C:\Program Files\Microsoft SDKs\Windows\v6.0A\Include
LIB
C:\Program Files\Microsoft SDKs\Windows\v6.0A\Lib;C:\Program Files\Microsoft VisualStudio 9.0\VC\lib;
VS90COMNTOOLS
C:\Program Files\Microsoft Visual Studio9.0\Common7\Tools\
在vim中运行”:make”,会编译你的代码;
通过如下几个命令调试代码:
“:clist” 显示编译过程的输出内容;
“: cnext”下一个错误,如果编译有错,会vim光标会停在第一个出错位置,你改正好,直接输入”:Cnext” , 会定位到下一个错误,直到没有错误;
“:cprevious” 上一个错误;
“:cc 数字” 数字代表错误号码
“:cclose” 关闭
ctags: 命令 “:tag xxx”会定位到xxx的定义位置,快捷键ctrl+]会定位到xxx位置,ctrl+T返回上一个位置;其它命令参考其帮助或网上资料;
taglist:通过ctrl+w在代码窗口和taglist串口间切换,在taglist窗口中按下回车,vim代码窗口会跳到符号定义处;
cscope: vim中执行”:cs add d:/work/cscope.out d:/work”,vim就可以使用cscope了,
可以通过cscope的find命令在你的工程中查找任何需要的内容;具体参考帮助文档;
vim目录浏览功能: vim可以浏览目录,方法很简答,”:edit.”浏览当前目录,”:edit ./sub”浏览sub子目录;
这篇关于windows上vim+tags+taglist+cscope配置的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!