如何为 Latex 命令生成标签文件以在 Vim 中使用?
在 Vim 中输入 Latex 时,我使用 Latex-box 和omnicomplete。我发现它只能完成一些乳胶命令。
我们如何使用 ctags 生成完整的基本 Latex 命令的标签文件,或者进一步从我的 LatexFile.tex 中所需的包生成标签文件?
有人知道该怎么做吗?或者其他一些解决方案? 谢谢!
更新:有一篇关于 ctags+latex 的帖子: http ://caffeiedcode.wordpress.com/2009/11/16/simple-latex-ctags-and-taglist/(它可能很有用。)
I'm using latex-box and omnicomplete when typing latex in Vim. I find that it can just completes some of latex commands.
How can we generate a tags file of the full basic latex command using ctags, or maybe generate tags file from the packages needed in my latexFile.tex in further ?
Anyone know how to do that ? Or some other solutions ?
Thanks!
Update: There is a post about ctags+latex: http://caffeinatedcode.wordpress.com/2009/11/16/simple-latex-ctags-and-taglist/ (It could be useful.)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于 vim 补全部分,您可以使用 'dictionary' 选项指定文件列表来查找 i_CTRL-X_CTRL_K 补全的候选者。
下一部分是生成您想要在“词典”选项中引用的文件。为此,您可以在 google 上搜索所有“内置”latex 命令的列表,对于其他软件包,您可以编写一个 shell 脚本来提取所有定义的命令。
For the vim completion part you can use the 'dictionary' option that specifies the list of files to look for candidates for completion for the i_CTRL-X_CTRL_K.
The next part is to generate those files that you want to refer to in the 'dictionary' option. For this you can google for the list of all 'built-in' latex commands, and for the additional packages you can whip up a shell script to extract all the defined commands.
也许它对你有帮助:
http://vim-taglist.sourceforge.net/extend.html
请参阅文档末尾(“将以下行添加到 $HOME/.ctags 或 $HOME/ctags.conf 文件”)。
Maybe it helps you:
http://vim-taglist.sourceforge.net/extend.html
See the end of document ("Add the following lines to the $HOME/.ctags or $HOME/ctags.conf file").