如何为 Latex 命令生成标签文件以在 Vim 中使用?

发布于 2024-12-07 08:12:55 字数 412 浏览 0 评论 0原文

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

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

发布评论

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

评论(2

2024-12-14 08:12:55

对于 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.

何处潇湘 2024-12-14 08:12:55

也许它对你有帮助:
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").

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