Junan Chakma
Junan Chakma

Reputation: 651

Shortcut in Rubymine for switching from method call to definition?

Suppose I have a method in VIEW called my_method() and it is defined in application_helper.rb. I want to know the shortcut for switching from my_method() call in VIEW to its definition in application_helper.rb.

I am using windows 7 and Rubymine 5.

Upvotes: 0

Views: 346

Answers (1)

CrazyCoder
CrazyCoder

Reputation: 402235

Navigate | Declaration, shortcut would depend on your keymap, you can view it here:

Declaration

Default keymap uses these:

  • Ctrl+B
  • Ctrl+Click
  • Right Click

Upvotes: 2

Related Questions