如何使 .less 文件在 Vim 中具有 .css 语法高亮?

发布于 2024-09-06 13:54:33 字数 141 浏览 10 评论 0原文

我一直在使用 LESS 并且我发现它非常有用

我希望在 Vim 中使用所有 .less 来突出显示 CSS 语法文件。

有什么建议吗?

I've been using LESS and I find it very useful

I would like to have CSS syntax highlight in Vim with all .less files.

Any suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

眉目亦如画i 2024-09-13 13:54:33

http://leafo.net/lessphp/vim/

检查安装文件以获取说明。

http://leafo.net/lessphp/vim/

Check the INSTALL file for instructions.

小女人ら 2024-09-13 13:54:33

如果你只想使用Vim的语法高亮,那么你可以将每个LESS文件的文件类型设置为CSS文件。

为此,您可以将 au BufNewFile,BufRead *.less set filetype=css 添加到 .vimrc 文件中。

au 代表 autocommand,因此上面的行显示为“在事件 BufNewFileBufRead 上,如果文件具有less 扩展名,然后将 filetype 选项设置为 css”。

请记住,这不是推荐的方法。根据 Vim Tips Wiki

如果您希望 Vim 识别新的文件扩展名,请不要在 .vimrc 中修改 augroup,请将设置放在正确的位置。请参阅 :help ftdetect

If you only want to use Vim's syntax highlighting, then you can set the filetype of every LESS file to be a CSS file.

To do this, you can add au BufNewFile,BufRead *.less set filetype=css to your .vimrc file.

au stands for autocommand, so the above line reads "on events BufNewFile or BufRead, if the file has a less extension, then set the filetype option to css".

Keep in mind that this is not the recommended way. According to the Vim tips Wiki:

If there is a new file extension that you want Vim to recognize, don't muck about with augroup in your .vimrc, put the settings in the right place. See :help ftdetect

陌若浮生 2024-09-13 13:54:33

将此行粘贴到您的 .vimrc 中:

au BufRead,BufNewFile *.less setfiletype css

auautocmd 的简写。因此,这读作“当我读取或打开以 .less 结尾的新文件时,自动将文件类型设置为 CSS”。

Paste this line into your .vimrc:

au BufRead,BufNewFile *.less setfiletype css

au is a shorthand for autocmd. So this reads as "when I read or open a new file that ends in .less, automatically set the filetype as CSS".

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文