我使用latex来使用minted
包排版大量代码。主要是我的Latex源的布局如下:
... text ...
\begin{cppcode}
class GenericClass{
public:
int publicMember;
private:
int privateMember;
}
\end{cppcode}
... text ...
有没有告诉Vim突出显示\begin{cppcode}
\end{cppcode
}中的代码,好像它是C++
代码一样?