我在vim配置中放了什么?我该如何改变它?
我希望它像.html扩展名...因为它是html ...
答案 0 :(得分:7)
我认为你需要
au BufRead,BufNewFile *.ejs setfiletype html
au
是autocmd
把它放在测试中也是个好主意
if has("autocmd")
au BufRead,BufNewFile *.ejs setfiletype html
endif
如果您使用不支持此功能的缩减版Vim,请避免出现错误消息。
最后,如果你有一个默认的文件类型规则,如:
au BufRead,BufNewFile * setfiletype text
然后*.ejs
规则必须高于它。
答案 1 :(得分:0)
这对我很有用:
au BufEnter * .ejs:setl filetype = html 来源:How do I tell vim that some file extensions are synonymous?