使用 JavaScript 的 ctags 和 tagbar

发布于 2024-12-22 06:03:46 字数 236 浏览 2 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

笑咖 2024-12-29 06:03:46

检查您的 tagspwd 状态:

:set tags?
:pwd

应该可以从您的 pwd 访问 set Tags? 命令显示的标签文件>。

Check your tags and pwd status:

:set tags?
:pwd

The tags files shown by the set tags? command should be reachable from your pwd.

断舍离 2024-12-29 06:03:46

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文