vim 的 Objective-C 标签文件
我想使用 Vim 来编辑源代码,使用 Xcode 来实现所有其他目的,例如管理、调试等。我已经安装了 cocoa.vim 插件,它有助于突出显示,但我仍然需要一种在代码中导航的方法。在java项目中我使用ctags来达到目的,但它不支持obj-c。
所以问题是:为 Objective-C 源生成 vi 兼容标签文件的最简单方法是什么?
I'd like to use Vim for editing sources and Xcode for all other purposes like managing, debugging etc. I've installed cocoa.vim plugin and it helps with highlighting, but I still need a way to navigate around the code. In java project I used ctags for the purpose, but it doesn't support obj-c.
So the question is: what is the easiest way to generate vi-compatible tags file for Objective-C sources?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我是 jelera 指出的第二个链接的作者,必须说它现在已经过时了。
我会遵循 Alternatives to Ctags/Cscope with Objective- 的已接受答案中的建议- c? 以便在 ctags 中获得完整的 Obj-C 解析器支持。
如果您使用 tagbar,这篇文章将帮助您使用新的 ctags 二进制文件:
http://bastibe.de/2011-12-04-how-to-make-tagbar-work-with-objective-c.html
这几乎就是我现在使用的设置。
I'm the author of the second link that jelera pointed to and must say it is now out of date.
I would follow the advice in the accepted answer of Alternatives to Ctags/Cscope with Objective-c? in order to get full Obj-C parser support in ctags.
If you use tagbar, this post will help get the new ctags binary working with it:
http://bastibe.de/2011-12-04-how-to-make-tagbar-work-with-objective-c.html
This is pretty much the setup I now use.