我正在使用 Vim 我想设置我的文件类型,如下所示
autocmd BufNewFile,BufRead *_controller.rb set ft=rails syntax=ruby
但取决于当前文件目录示例,如果我打开/code/project/app/model/somefile.rb
我想设置filetype
为model
现在我正在使用autocmd BufNewFile,BufRead */app/models/*.rb set ft=model syntax=ruby
但也许是更好的选择。