2.2.3.1vim + ctags + cscope + taglist

在window下,我们一般用Source Insight来查看代码而在linux下,使用vim来查看代码,vim是一个简单的文本浏览/编辑器,它可以通过插件的形式,搭建一个完全的类Source Insight环境,通过快捷键的形式,快速查看、定位变量/函数,本文就是基于vim,通过ctags+cscope+taglist+Nerdtree将vi/vim打造成一个IDE.

2.2.3.1vim + ctags + cscope + taglist_第1张图片

1 vim安装与适配

1.1 安装

ubuntu默认安装的是vi,要想安装vim,需要手动安装

sudo apt -get install vim

vim --version

1.2 适配

通过通过.vimrc文件进行适配

2 ctags安装与适配

ctags,实现函数间的跳转,高速查找函数的定义

2.1 安装

1 命令安装:
sudo apt-get install ctags
或sudo apt-get install exuberant-ctags 
2 源码安装:
Exuberant Ctags
$ wget

你可能感兴趣的:(TI,AM62x平台从入门到精通系列,vim,编辑器,linux,ctags,cscope,nerdtree)