RubyMine
A full-stack IDE specialized for Ruby and Rails development, equipped with all features for writing beautiful code quickly
Navigation shortcuts for fast jumps to classes, methods, and symbols to reach target code without getting lost even in large Ruby projects
Ctrl+N
Go to Class
Navigates to a specified class.
💡 Hint: Ctrl + N = Class
🎯 Used for quickly opening specific classes by searching their names
Ctrl+Shift+N
Go to File
Navigates to a specified file.
💡 Hint: Ctrl + Shift + N = File
🎯 Used for instantly accessing target files by searching file names
Ctrl+Alt+Shift+N
Go to Symbol
Navigates to a specified symbol.
💡 Hint: Ctrl + Alt + Shift + N = Symbol
🎯 Used for navigating to methods, variables, constants and other symbols by searching their names
Ctrl+B → Ctrl+Click
Go to Declaration
Navigates to the declaration.
💡 Hint: Ctrl + B / Click = Declaration
🎯 Used for instantly jumping to method or variable definitions to understand code structure
Ctrl+Shift+B
Go to Type Declaration
Navigates to the type declaration.
💡 Hint: Ctrl + Shift + B = Type Declaration
🎯 Used for navigating to type definitions to check class details
Ctrl+E
Show Recent Files
Displays the recent files popup.
💡 Hint: Ctrl + E = Erecent files
🎯 Used for quickly returning to target files from the list of recently opened files
Ctrl+Alt+Left
Navigate Back
Navigates back to the previous location.
💡 Hint: Ctrl + Alt + Left = Back
🎯 Used for going back to previous locations while following code flow to deepen understanding
Ctrl+Alt+Right
Navigate Forward
Navigates forward to the next location.
💡 Hint: Ctrl + Alt + Right = Forward
🎯 Used for moving forward again after going back to trace navigation history
Alt+Down
Go to Next Method
Navigates to the next method.
💡 Hint: Alt + Down arrow = next
🎯 Used for moving to the next method in a file to streamline code review
Alt+Up
Go to Previous Method
Navigates to the previous method.
💡 Hint: Alt + Up arrow = previous
🎯 Used for moving to the previous method in a file to understand code structure