Skip to content

Instantly share code, notes, and snippets.

@DineshSolanki
Created August 5, 2023 07:52
Show Gist options
  • Save DineshSolanki/6294c9fe91f7f2557ff7fe6752d43e1a to your computer and use it in GitHub Desktop.
Save DineshSolanki/6294c9fe91f7f2557ff7fe6752d43e1a to your computer and use it in GitHub Desktop.

IntelliJ IDEA Cheatsheet πŸ’‘

Navigation 🌐

  • Ctrl + N - Go to class 🏫
  • Ctrl + Shift + N - Go to file πŸ“„
  • Ctrl + Alt + Shift + N - Go to symbol ♾️
  • Ctrl + B / Ctrl + Click - Go to declaration πŸ“œ
  • Ctrl + Alt + B - Go to implementation(s) πŸ‘·

Search/Replace πŸ”Ž

  • Double Shift - Search everywhere πŸ”
  • Ctrl + F - Find πŸ•΅οΈ
  • Ctrl + R - Replace ♻️
  • Ctrl + Shift + F - Find in path πŸ›£οΈ
  • Ctrl + Shift + R - Replace in path πŸ›£οΈ

Refactoring βš™οΈ

  • Shift + F6 - Rename πŸ“›
  • Ctrl + F6 - Change method signature ✍️
  • Ctrl + Alt + N - Inline οΏ½ JOIN🀝
  • Ctrl + Alt + M - Extract method πŸ’Ž

Debugging 🐞

  • F9 - Resume program ▢️
  • F8 - Step over ‡️
  • F7 - Step into πŸšͺ
  • Alt + F9 - Run to cursor 🎯
  • Alt + F8 - Evaluate expression πŸ€”

Useful Tricks 🎩

  • Scratches - Temporary sandbox files 🏜️
  • Postfix code completion - .null βž–, .fori πŸ”, etc
  • Structural search and replace - Modify code across projects 🌏
  • Code templates - Live templates for code snippets βœ‚οΈ
  • Key promoter - Learn shortcuts on the fly 🚁
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment