Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
jasmine.coffeeVIMとして認識されているファイルがありますが、&filetype=='coffee'false と評価されます。
jasmine.coffee
&filetype=='coffee'
Vimscript で部分的なファイルタイプの一致を行う方法はありますか
代わりにパターン マッチング演算子を使用してください=~。これは、右側を正規表現として処理してテストします。
=~
&filetype =~ 'coffee'
これは、Vimscript ドキュメントの条件セクションに記載されています。