Top => IntelliJ on Windows/Linux
Kata for practicing keyboard shortcuts for common editing operations
Key sequences to practice
- (Ctrl + U) - go to the superclass/supermethod of the thing where the caret is positioned
- (Ctrl + Shift + Backspace) - go to the last edit location
- (Ctrl + Shift + H) - view method hierarchy
- (Ctrl + Alt + H) - view call hierarchy
Walkthrough of steps with explanations
- Open the Java source file, MomSender.java.
- Position the caret in the send() method.
- Press (Ctrl + U) to go to the parent method in class Sender.java.
- Press (Ctrl + Shift + Backspace) to go back to the point where you were in MomSender.java
- Position the caret on any reference. Press (Ctrl + Shift + H) to view the method hierarchy above the item where the caret is positioned.
- Position the caret on any reference. Press (Ctrl + Alt + H) to view call hierarchy above the item where the caret is positioned.