Top => IntelliJ on Windows/Linux
Kata for practicing keyboard shortcuts for common editing operations
Key sequences to practice
- (Ctrl + Shift + Backspace) - move caret to the previous point where you made an edit (not necessarily in the same file)
Walkthrough of steps with explanations
- Open the file, rain-in-spain.txt.
- Open the Java source file, CodeCompletionPractice.java.
- Open the Java source file, LongConditional.java.
- Make a minor edit in LongConditional.java.
- In another part of the file, make another minor edit in LongConditional.java.
- Make a minor edit in CodeCompletionPractice.java.
- Make a minor edit in rain-in-spain.txt.
- Press (Ctrl + Shift + Backspace) to return to the point in CodeCompletionPractice.java where you made the edit.
- Press (Ctrl + Shift + Backspace) to return to the point of the second edit in LongConditional.java.
- Press (Ctrl + Shift + Backspace) to return to the point of the first edit in LongConditional.java.
- Press (Ctrl + Shift + Backspace) to return to the point of the edit in CodeCompletionPractice.java.
And then to revert:
- Press (Ctrl + Z) repeatedly to undo changes in each file.