我使用 latex 使用minted包对很多代码进行排版。我的Latex来源的布局主要是这样的:

... text ...
\begin{cppcode}
class GenericClass{
    public:
        int publicMember;
    private:
        int privateMember;
}
\end{cppcode}
... text ...

无论如何,有什么要告诉Vim突出显示\begin{cppcode}里面的代码,就像\end{cppcode一样吗?

最佳答案

是的,您可以-请参阅this vim tip了解详细信息。

10-02 00:54