使用 JavaScript 的 ctags 和 tagbar
我在 vim 中安装了 tagbar。
它完美地解析了整个js文件。 但是,当我尝试使用 ctags 时,它不能很好地解析文件。
现在,tagbar 不是使用 ctags 吗?
https://picasaweb.google.com/lh/photo/dVQuETMxHXqTEgM7Zeim1dMTjNZETYmyPJy0liipFm0?feat=directlink
I installed tagbar in vim.
It parses the whole js file perfectly.
But, when i try to use ctags, it doesnt parse the file well.
Now, isnt tagbar using ctags?
https://picasaweb.google.com/lh/photo/dVQuETMxHXqTEgM7Zeim1dMTjNZETYmyPJy0liipFm0?feat=directlink
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
检查您的
tags
和pwd
状态:应该可以从您的
pwd
访问set Tags?
命令显示的标签文件>。Check your
tags
andpwd
status:The tags files shown by the
set tags?
command should be reachable from yourpwd
.TagBar 会即时生成自己的标签,甚至不会将其写入磁盘中的某个位置:ctags 的输出会直接解析并显示在窗口中。
您可能会收到此错误,因为您没有使用
:!ctags -R .
生成标签文件,或者因为它已过期。TagBar generates its own
tags
on the fly and it doesn't even write it to disk somewhere: ctags' output is directly parsed and displayed in the window.You may get this error because you didn't generate a tags file with
:!ctags -R .
or because it's out of date.