例如。 foo.php.tpl
应突出显示为PHP,foo.js.erb
为Javascript,foo.py.tmp
为Python ...
最佳答案
我会在~/.vimrc
中添加类似的内容
au BufEnter,BufRead *.php.tpl set filetype=php
au BufEnter,BufRead *.js.erb set filetype=javascript
au BufEnter,BufRead *.py.tmp set filetype=python
与@leaf的答案相同,但也占了
BufRead
事件。