latex-suiteでフォールディングする環境を追加する

latex-suiteでequationやalign,figure等は自動的にfoldingされますが,
自作の環境やこの環境もfoldingして欲しいという要望があります.
そんなときは↓

方法その1

.vimrcに

let g:Tex_FoldedEnvironments = 'verbatim,comment,eq,gather,align,figure,table,thebibliography,'
    \. 'keywords,abstract,titlepage'

とfoldingしたい環境を書き込む.

方法その2

plugin本体をいじる.
.vim/ftplugin/latex-suite/folding.vimの110行あたりの

let s = 'verbatim,comment,eq,gather,align,figure,table,thebibliography,'
    \. 'keywords,abstract,titlepage'

にfoldingしたい環境を追加するだけ.
以上.