我正在使用 Tim Pope 的 rails.vim 插件,在大多数情况下,它几乎可以突出显示我想要的所有内容,除了 Capybara 的新 DSL,它包含诸如feature
,scenario
等关键字background
。
我不想只为这两个关键字创建一个新的语法文件,只需将它们添加到现有的。
我正在使用 Tim Pope 的 rails.vim 插件,在大多数情况下,它几乎可以突出显示我想要的所有内容,除了 Capybara 的新 DSL,它包含诸如feature
,scenario
等关键字background
。
我不想只为这两个关键字创建一个新的语法文件,只需将它们添加到现有的。
找到rails.vim
包含语法内容并添加关键字的文件。
elseif buffer.type_name('spec') syn keyword rubyRailsTestMethod describe context it its specify shared_examples_for it_should_behave_like before after subject fixtures controller_name helper_name feature scenario background
这个答案给了我在哪里看的提示:Automate rails.vim