_ [comp] comment 環境

\usepackage{comment}

\begin{comment}
コメント
\end{comment}

LaTeX で広範囲をコメントアウトする際に使う。ruby.vim の =begin 〜 =end みたく色が変わらないな…。

_ [comp] tex.vim に comment 環境対応追加

@@ -331,6 +331,9 @@
 else
   syn match texComment         "%.*$"          contains=@texCommentGroup
 endif
+" 2005/06/21 add comment env
+syn region texComment start="\\begin{comment}" end="\\end{comment}" contains=texTodo fold
+"
 
 " Separate lines used for verb` and verb# so that the end conditions \{\{\{1
 " will appropriately terminate.  Ideally vim would let me save a

ruby.vim を参考に tex.vim に追加してみた。