Thor 的 VIM 中类似 Ruby 的语法突出显示
如何配置 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为应该足够了......如果您想稍后自定义它,也许可以这样:
并将 ruby .vim 语法突出显示文件复制到
$HOME/.vim/syntax/thor.vim
I think should suffice... maybe this if you want to customize it later:
and copy ruby .vim syntax highlight file to
$HOME/.vim/syntax/thor.vim
应该有效。
should work.