Skip to content

Instantly share code, notes, and snippets.

@vyach-vasiliev
Last active April 12, 2025 13:02
Show Gist options
  • Save vyach-vasiliev/3c0483391a520f0c1f2d92530496df71 to your computer and use it in GitHub Desktop.
Save vyach-vasiliev/3c0483391a520f0c1f2d92530496df71 to your computer and use it in GitHub Desktop.
Cheatsheets bw VSCode and IntelliJIDEA

Cheatsheets between VSCode and Intellij IDEA

About Extensions that make ⚡IDE from VSCode read here
If you have anything to add/change, feel free to leave a comment, thanks 💛

Plugins:

Legends:

I - IJ IDEA
V - VSCode

File Explorer & Panels

  • Focus the editor

    • Esc (I) w/o close panel or one more press previuos hotkey with close panel
    • Ctrl+B (V) with close panel
  • New file

    • Ctrl+Alt+Insert (I)
    • Ctrl+Alt+Super+N (V)
  • Open Filex Explorer

    • Alt+1 (I)
    • Ctrl+Shift+E (V)
  • View recent files (Select a recently opened file from the list)

    • Ctrl+E (I)
    • Ctrl+P (V)

Search

  • Search text in files

    • Double Shift (I) for Search Everywhere or Ctrl+Shift+E
    • Ctrl+Shift+F (V)
  • Search files by name

    • Double Shift (I) for Search Everywhere or Ctrl+Shift+N
    • Ctrl+P (V)

Code

  • Reformat Code

    • Ctrl+Alt+L (I)
    • Shift+Alt+F (V)
  • Add/remove line or block comment

    • Ctrl+/ (I)
    • Ctrl+/ (V)
  • Go To Declaration (Navigate to the initial declaration of the instantiated class, called method, or field.)

    • Ctrl+B (I)
    • F12 (V)
  • Find Usages (Show all places where a code element is used across your project.)

    • Alt+F7 (I)
    • Shift+F12 (V)
  • Start new line

    • Shift+Enter (I)
    • Ctrl+Enter (V)

VCS

  • Open VCS Tree for commit
    • Ctrl+K (I)
    • Ctrl+Shift+G (V)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment