gvim tagbar ctags安装

gvim tagbar ctags安装

在gvim中如何打开右侧的窗口来显示文档中的变量和函数呢?tagbar

先安装ctags

Exuberant Ctags (sourceforge.net)

Exuberant Ctags download | SourceForge.net

因为我是windows7和gvim所以下载的是zip压缩包

gvim tagbar ctags安装

解压后将其中的ctag.exe复制到gvim的安装目录(和gvim.exe一个路径)

其他系统

ubuntu

>sudo apt-get install ctags

mac

>brew install ctags

然后是安装tagbar

preservim/tagbar: Vim plugin that displays tags in a window, ordered by scope (github.com)

我使用的是pathegon,所以直接克隆到plugins目录即可

Put something like the following into your ~/.vimrc:

nmap <F8> :TagbarToggle<CR>

If you do this the F8 key will toggle the Tagbar window. You can of course use any shortcut you want. For more flexible ways to open and close the window (and the rest of the functionality) see the documentation using :help tagbar.

 

上一篇:窗口滑动指定的距离(js代码实现)


下一篇:PyQt5学习笔记-程序结构分析