When using ViewComponent, you'll have a .rb file in app/components, and a corresponding Rails view whose path is the same except for the file extension.
For example:
app/components/foo_component.rb
app/components/foo_component.html.erb
Is there a good way to go to the Ruby file when I'm in the view, and go to the view when I'm in the Ruby file? :A and :R both bring me to spec/components/foo_component_spec.rb when in the Ruby file and do nothing ("No alternate file defined") when in the view.
Given how controllers and views work with :R, I think :R would be a good fit for this.
When using ViewComponent, you'll have a
.rbfile in app/components, and a corresponding Rails view whose path is the same except for the file extension.For example:
app/components/foo_component.rb
app/components/foo_component.html.erb
Is there a good way to go to the Ruby file when I'm in the view, and go to the view when I'm in the Ruby file?
:Aand:Rboth bring me tospec/components/foo_component_spec.rbwhen in the Ruby file and do nothing ("No alternate file defined") when in the view.Given how controllers and views work with
:R, I think:Rwould be a good fit for this.