Sass 的语法突出显示在 Vim 中不起作用
我刚刚下载了一个用于 Sass 语法高亮的 Vim 插件。
说明说:
安装详细信息将其放入语法中 目录并添加 sass 文件类型
啊! BufRead,BufNewFile *.sass
设置文件类型 sass在你的 filetype.vim 中
我已经将 sass.vim 放置在 vimfiles/syntax/
中(使用 Windows)。
并在以下所有目录中使用上面的代码(au!Buf...)创建了一个 filetype.vim 文件:
- vimfiles/
- vimfiles/ftDetect
- vimfiles/ftplugins
但没有人有效(我什至在我的 vimrc 中输入了 au!Buf... 代码)。
我的 .sass 文件仍然如下所示:
alt text http: //img193.imageshack.us/img193/4791/sassi.png
有什么建议吗?
I just downloaded a Vim plugin for Sass syntax highlight.
The instructions say:
install details put it into syntax
directory and add sass filetypeau! BufRead,BufNewFile *.sass
setfiletype sassin your filetype.vim
I already placed sass.vim in vimfiles/syntax/
(using windows).
And created a filetype.vim file with the code above (au! Buf...) in all the following directories:
- vimfiles/
- vimfiles/ftdetect
- vimfiles/ftplugins
but no one worked (I even typed the au! Buf... code in my vimrc).
My .sass files still looking like this:
alt text http://img193.imageshack.us/img193/4791/sassi.png
any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道一个简单的修复方法,但尝试使用以下命令检查一些 vim 设置:
:syntax enable
:filetype
:set filetype?
:set runtimepath?
I don't know an easy fix, but try checking some vim settings with the following commands:
:syntax enable
:filetype
:set filetype?
:set runtimepath?
:runtime! vimfiles/syntax/sass.vim