Sass 的语法突出显示在 Vim 中不起作用

发布于 2024-09-06 11:14:40 字数 746 浏览 7 评论 0原文

我刚刚下载了一个用于 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 filetype

au! BufRead,BufNewFile *.sass
setfiletype sass

in 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

终止放荡 2024-09-13 11:14:40

我不知道一个简单的修复方法,但尝试使用以下命令检查一些 vim 设置:

  • 启用语法是否显式修复您的问题? :syntax enable
  • 文件类型检测是否打开? :filetype
  • vim 是否将其识别为 sass 文件? :set filetype?
  • 检查并确保您的脚本目录位于运行时路径中 :set runtimepath?
  • 手动加载语法文件是否会改变任何内容? <代码>:运行时! vimfiles/syntax/sass.vim
  • 还要检查语法突出显示是否适用于其他文件类型。

I don't know an easy fix, but try checking some vim settings with the following commands:

  • Does enabling syntax explicitly fix your problem? :syntax enable
  • Is filetype detection on? :filetype
  • Does vim recognize this as a sass file? :set filetype?
  • Check to make sure your script directories are in the runtime path :set runtimepath?
  • Does manually loading the syntax file change anything? :runtime! vimfiles/syntax/sass.vim
  • Also check if syntax highlighting works for other filetypes.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文