如何让特定的文件扩展名在 .vimrc 文件中表现得像 .html 一样?
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以在你的
.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.
使用自动命令:
Use an autocommand: