如何让特定的文件扩展名在 .vimrc 文件中表现得像 .html 一样?

发布于 2024-10-15 16:30:45 字数 160 浏览 4 评论 0原文

我正在使用 MacVim 并在 .html 文档上设置了颜色。我正在处理使用 Sparkview Engine for .Net MVC 的各种项目。这些文件以 .spark 结尾。如何在 .vimrc 文件中设置 .spark 扩展名以映射到 .html,以便我的所有颜色也出现在 .spark 文件上?

I am using MacVim and have colours set on .html documents. I working on various projects that are using the Sparkview Engine for .Net MVC. These files end in .spark. How do I in my .vimrc file set the .spark extensions to map to .html so all my colourations appear on .spark files too?

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

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

发布评论

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

评论(2

玩物 2024-10-22 16:30:45

你可以在你的 .vimrc 中使用以下

autocmd BufRead,BufNewFile *.spark set filetype=html

表示每次打开或创建新的 Spark 文件时,该文件当前缓冲区的类型设置为 html。并且应该应用适当的语法突出显示。

You can use the following in your .vimrc

autocmd BufRead,BufNewFile *.spark set filetype=html

It means that every time you open or create a new spark file, the file type is set to html for the current buffer. And the appropriate syntax highlighting should be applied.

原来是傀儡 2024-10-22 16:30:45

使用自动命令:

    au BufNewFile,BufRead *.spark setfiletype html

Use an autocommand:

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