Thor 的 VIM 中类似 Ruby 的语法突出显示

发布于 2024-10-14 09:13:58 字数 251 浏览 5 评论 0原文

如何配置 vim 对 Thor 使用与 ruby​​ 相同的语法突出显示?当我编辑 *.thor 文件时,我可以使用 :set syntax=ruby,它可以工作,但不是永久的。有没有办法在我的 .vimrc 文件中执行某些操作,以有条件地将语法设置为 ruby​​(如果它是 *.thor)?也许创建一个雷神语法文件并继承自 ruby​​?

How can I configure vim to use the same syntax highlighting for Thor as it does for ruby? When I'm editing a *.thor file, I can use :set syntax=ruby, which works, but is not permanent. Is there a way to do something in my .vimrc file to conditionally set the syntax to ruby if it's *.thor? Maybe create a thor syntax file and inherit from ruby?

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

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

发布评论

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

评论(2

血之狂魔 2024-10-21 09:13:58
au BufRead,BufNewFile *.thor set filetype=ruby

我认为应该足够了......如果您想稍后自定义它,也许可以这样:

au BufRead,BufNewFile *.thor set filetype=thor
au! Syntax thor source $HOME/.vim/syntax/thor.vim

并将 ruby​​ .vim 语法突出显示文件复制到 $HOME/.vim/syntax/thor.vim

au BufRead,BufNewFile *.thor set filetype=ruby

I think should suffice... maybe this if you want to customize it later:

au BufRead,BufNewFile *.thor set filetype=thor
au! Syntax thor source $HOME/.vim/syntax/thor.vim

and copy ruby .vim syntax highlight file to $HOME/.vim/syntax/thor.vim

终陌 2024-10-21 09:13:58
autocmd BufNewFile,BufRead *.thor set syntax=ruby

应该有效。

autocmd BufNewFile,BufRead *.thor set syntax=ruby

should work.

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