Skip to content

Instantly share code, notes, and snippets.

@pedrovasconcellos
Last active August 8, 2024 18:53
Show Gist options
  • Save pedrovasconcellos/65cce81728bc52eff56a3a14d709c09c to your computer and use it in GitHub Desktop.
Save pedrovasconcellos/65cce81728bc52eff56a3a14d709c09c to your computer and use it in GitHub Desktop.
IDE shortcuts for MacOS
------------------------------------------------------------------------------------------------------------------
VS-CODE
Depuração:
Step Over: F10
Step Into: F11
Step Out: Shift + F11
Resume Program: F5
Pause Program: F6
Toggle Breakpoint: F9
View Breakpoints: Ctrl + Shift + B
Busca:
Search Everywhere: Cmd + P (para buscar arquivos), Cmd + Shift + P (para buscar comandos)
Find in Files: Cmd + Shift + F
Find in Current File: Cmd + F
Go to File: Cmd + P
Go to Class: Cmd + P (VSCode não tem uma busca específica para classes, usa-se a busca de arquivos e símbolos)
Go to Symbol: Cmd + Shift + O
Navigate to Line: Ctrl + G
Outros Comandos Úteis:
Run: Ctrl + Shift + D e depois F5
Debug: F5
Open Recent Files: Cmd + R
Save All: Cmd + K seguido de S
Reformat Code: Shift + Option + F
Quick Fix: Cmd + .
------------------------------------------------------------------------------------------------------------------
INTELLIJ IDEA
Depuração:
Step Over: F8
Step Into: F7
Step Out: Shift + F8
Resume Program: ⌘ + Option + R (ou F9)
Pause Program: ⌘ + Option + P
Toggle Breakpoint: ⌘ + F8
View Breakpoints: ⌘ + Shift + F8
Busca:
Search Everywhere: Double Shift
Find in Files: ⌘ + Shift + F
Find in Current File: ⌘ + F
Go to File: ⌘ + Shift + O
Go to Class: ⌘ + O
Go to Symbol: ⌘ + Option + O
Navigate to Line: ⌘ + L
Outros Comandos Úteis:
Run: ⌃ + R
Debug: ⌃ + D
Open Recent Files: ⌘ + E
Save All: ⌘ + S
Reformat Code: ⌘ + Option + L
Quick Fix: Option + Enter
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment