vim无法将Podfile和podspec文件识别为Ruby文件

时间:2017-09-19 02:03:13

标签: ruby vim vim-syntax-highlighting podfile

如何让vim识别Podfile和podspec文件(一些没有扩展名的文件)作为ruby文件,这样vim可以使语法高亮显示。

1 个答案:

答案 0 :(得分:2)

将此添加到 .vimrc

autocmd BufNewFile,BufRead Podfile,*.podspec set filetype=ruby

此行指示Vim将 Podfiles 和带有 .podspec 扩展名的文件视为Ruby文件,以便继承Ruby语法高亮显示。