注意:重写了原始问题以反映给出的正确解决方案。
vim (ubuntu 12.04 w/ r-plugin) 无法将 .R 或 .r 文件识别为 R 文件,其中安装了 r-plugin 并在文件中添加注释,如下所示。
# comment
x <- 2
x
没有评论,一切正常。我的 ~/.vim/filetype.vim 读取:
augroup filetypedetect
au! BufRead,BufNewFile *.r setfiletype r
au! BufRead,BufNewFile *.R setfiletype r
au! BufRead,BufNewFile *.Rnw setf noweb
augroup END