ctags and vim

Posted davee_x

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ctags and vim相关的知识,希望对你有一定的参考价值。

1,源码目录下第归检索.

ctags -R *

2,搜索tag并用vim打开:

vim -t <tag>

3,在vim 下的一些操作:

Keyboard command

Action

Ctrl-]

Jump to the tag underneath the cursor

:ts <tag> <RET>

Search for a particular tag

:tn

Go to the next definition for the last tag

:tp

Go to the previous definition for the last tag

:ts

List all of the definitions of the last tag

Ctrl-t

Jump back up in the tag stack

以上是关于ctags and vim的主要内容,如果未能解决你的问题,请参考以下文章

ctags-vim代码间快速跳转

vim 配置问题 :ctags 在windows 下怎样安装?

[开发杂项][编辑器][代码阅读]ctags&vim

[开发杂项][编辑器][代码阅读]ctags&vim

[开发杂项][编辑器][代码阅读]ctags&vim

如何使用vim的插件Ctags查看Linux源码