Vim ctags 当前目录和 gemset
我有两个运行良好的 Ctags 命令。
第一个为我的 Rails 项目当前的 gemset 构建标签
ctags -R \`bundle show rails` /../*
,第二个为我的 Rails 项目的实际工作目录生成 ctags
ctags --extra=+f -R *<CR><CR>
但是,当我运行每个标签时,它会覆盖当前的标签文件,以便我无法享受 ctags对于我的宝石集和当前目录。
有人可以告诉我如何将这两个命令组合起来并生成一个包含所有 ctag 的标签文件吗?
I've got two Ctags commands that work great.
This first one builds tags for my current gemset of my rails project
ctags -R \`bundle show rails` /../*
and this second one which generates ctags for the actual working directory of my rails project
ctags --extra=+f -R *<CR><CR>
However, when I run each one it overwrites the current tags file so that I can't enjoy ctags for both my gemset and my current directory.
Can somebody show me how I can get these two commands to combine and produce one tags file with all the ctags in it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在第二个 ctags 命令中,尝试使用
-a
标志。根据文档:In your second ctags command, try using the
-a
flag. According to the documentation: