Seasons.NET

ちょっとした技術ブログです

TagExplorer.vimのパッチ

ファイル名に、test_score.cとかが含まれている場合、現状最新のTagExplorer.vimでは、
フィルタされてしまい、エクスプローラー上に表示されません。
ってことで、^coreのように行頭パターンマッチをいれておきます。

264 " Tag explorer will display those files with names not matching the pattern
265 " specified by the TE_Exclude_File_Pattern option. If this option is set to
266 " empty string, then all the files will be displayed.
267 " Use Vim regular expression for specifying this option
268 if !exists('TE_Exclude_File_Pattern')
269     let TE_Exclude_File_Pattern = '.*\.o$\|.*\.obj$\|.*\.bak$\|.*\.swp$' .
270                                   \ '\|^core\|^tags\|^TAGS\|^ID'
271 endif