开发者

Vim: LaTeX-suite table of contents

开发者 https://www.devze.com 2023-02-07 18:58 出处:网络
maybe I\'m drastically overlooking something trivial, but is there any possibility in Vim (with LaTeX-suite) to view 开发者_如何学Cthe table of contents?

maybe I'm drastically overlooking something trivial, but is there any possibility in Vim (with LaTeX-suite) to view 开发者_如何学Cthe table of contents?

To be more precisely, I'm looking for something equivalent to emacs'/AucTeX' C-c =, which displays a nice readable table of contents in a separate buffer.


maybe use:

:let @a=''
:g/\\\(part\|chapter\|section\|subsection\|subsubsection\|paragraph\|subparagraph\)\>/y A
:winc n
:put a

maybe have a function to do that and map whatever you like to that.

0

精彩评论

暂无评论...
验证码 换一张
取 消