Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 911 Bytes

ij-osx-navigate-through-methods.md

File metadata and controls

28 lines (19 loc) · 911 Bytes

Top => IntelliJ on OS X

JetBrains IntelliJ IDEA on Mac OS X

Kata: Navigate through methods

Key sequences to practice

  • ⌃↑ (Ctrl + Down Arrow) - Move forward to the next method
  • ⌃↓ (Ctrl + Up Arrow) - Move backward to the previous method

Keystrokes without explanations

  • Open the Java source file, LongConditional.java.
  • Repeat the following keyboard inputs until the sequence becomes fluid.
⌃↓ ↓ ↓
⌃ ↑ ↑↑

Steps with explanations

  1. Open the Java source file, LongConditional.java.
  2. Press ⌃↓ (Ctrl + Down Arrow), pressing ↓ (Down Arrow) repeatedly while holding down ⌃ (Ctrl), to skip forward through the text one method at a time.
  3. Press ⌃↑ (Ctrl + Up Arrow), pressing ↑ (Up Arrow) repeatedly while holding down ⌃ (Ctrl), to skip backward through the text one method at a time.
  4. Repeat until bored.