Vim:设置 ctag 很困难。子目录中的源在项目根目录中看不到标签文件
我今天试图在 Vim 上设置(丰富的)ctags,但很难让它正常工作。我在命令行上使用以下命令生成 ctags 文件:
cd myproj
ctags -R
这会将标签文件放在 myproj 根目录中。然而,当我处理位于根目录中的源代码时,Vim 似乎只读取此标签文件。当我导航到更深的目录时,如果我尝试使用
跳转到标签,我得到:
E433: No tags file
E426: tag not found: MyClassName
我已经验证 MyClassName 在标签文件中确实有一个标签,它是只是 Vim 看不到而已。有人可以解释一下如何配置 Vim 来引用根目录的标签文件吗?
谢谢。
I'm trying to get setup with (exuberant) ctags on Vim today and am having difficulty getting it to work properly. I generate my ctags file on the command line with with:
cd myproj
ctags -R
This puts the tags file in myproj root. However, Vim only seems to read from this tags file when I'm working on source that reside in root. As I navigate to deeper directories, if I try to jump to a tag using <C-]>
, I get:
E433: No tags file
E426: tag not found: MyClassName
I've verified that MyClassName does have a tag in the tags file, it's just that Vim doesn't see it. Can someone please explain how to configure Vim to reference the root's tags file?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
将其添加到
.vimrc
文件settags=tags;/
这将检查当前文件夹中的标签文件,并继续向上一个目录一直到根文件夹。
因此,您可以在项目中的任何子文件夹中,它将能够找到标签文件。
add this to
.vimrc
fileset tags=tags;/
This will check the current folder for tags file and keep going one directory up all the way to the root folder.
So you can be in any sub-folder in your project and it'll be able to find the tags files.
有一个选项可以告诉 Vim 在哪里寻找标签文件。
我使用以下配置:
摘自帮助:
我将当前工作目录保留在生成
tags
文件的顶级项目目录中。使用
:pwd
然后使用:cd myproj
(在 Vim 内)转到包含标签文件的目录。有关标签路径的更多信息,请参阅
:help Tags-option
。您的问题可能是您位于错误的目录中,或者您的
tags
选项设置不正确。There is an option to tell Vim where to look for tag file.
I use the following configuration:
Extract from help :
And I keep my current working directory in the top project directory where my
tags
file is generated.Use
:pwd
and then:cd myproj
(inside Vim) to go to the directory containing your tags file.See
:help tags-option
for more information on tags path.You issue is probably that you are either in the wrong directory, or your
tags
option is not properly set.将上述代码放入 .sh 文件中并运行...这肯定会生成您的标签。
Put the above code in a .sh file and run... This will generate your tags for sure.
如果您为每个项目生成一个标签文件,您可能会喜欢这种模式,特别是当您在不同的计算机上共享
.vimrc
时:然后您必须在
中设置环境变量 $REPO_HOME .bashrc
到您的主存储库目录不带尾随空格(例如/home//repos
),它将自动查找标签文件在 $REPO_HOME 的每个子目录中,深度为 1,例如/home//repos/myproj/tags
。If you generate a tags file for every project, you might like this pattern, especially if you share your
.vimrc
across different machines:You would then have to set the environment variable $REPO_HOME in your
.bashrc
to your main repo directory without the trailing space (e.g./home/<yourusername>/repos
) and it will automatically look for a tags file in each subdirectory of $REPO_HOME with a depth of 1, e.g./home/<yourusername>/repos/myproj/tags
.使用以下代码创建一个 .sh 文件。并在您想要标记的位置运行 .sh 文件。
这肯定会起作用。
Create a .sh file with below code. And run .sh file where you want tags.
That will work for sure.