Default Shortcuts
AIRGAP Studio is built on VS Code, so most VS Code keyboard shortcuts work as-is.
General
| Shortcut | Action |
|---|
Ctrl+Shift+P | Open Command Palette |
Ctrl+P | Quick Open file |
Ctrl+, | Open Settings |
Ctrl+K Ctrl+S | Keyboard Shortcuts settings |
Ctrl+`` | Toggle integrated terminal |
Editing
| Shortcut | Action |
|---|
Ctrl+X | Cut line (without selection) |
Ctrl+C | Copy line (without selection) |
Alt+Up/Down | Move line |
Shift+Alt+Up/Down | Duplicate line |
Ctrl+Shift+K | Delete line |
Ctrl+D | Select next occurrence |
Ctrl+Shift+L | Select all occurrences |
Search & Navigation
| Shortcut | Action |
|---|
Ctrl+F | Find |
Ctrl+H | Find and Replace |
Ctrl+Shift+F | Search across files |
Ctrl+G | Go to line number |
F12 | Go to Definition |
Alt+F12 | Peek Definition |
Ctrl+Tab | Switch between open editors |
Layout & Windows
| Shortcut | Action |
|---|
Ctrl+B | Toggle sidebar |
Ctrl+J | Toggle bottom panel |
Ctrl+\ | Split editor |
Ctrl+1/2/3 | Focus editor group |
Ctrl+Shift+E | Focus Explorer |
Debugging
| Shortcut | Action |
|---|
F5 | Start debugging |
F9 | Toggle breakpoint |
F10 | Step over |
F11 | Step into |
Shift+F11 | Step out |
AIRGAP-Specific Shortcuts
| Shortcut | Action |
|---|
Ctrl+Shift+A | Open AIRGAP Assistant |
Ctrl+Shift+D | Open AIRGAP Designer |
You can find all AIRGAP commands by searching for AIRGAP in the Command Palette (Ctrl+Shift+P).
Customizing Shortcuts
Press Ctrl+K Ctrl+S to open the keyboard shortcuts settings. Type a command in the search bar and change it to your preferred key combination.
You can also directly edit the keybindings.json file for advanced configuration.
{
"key": "ctrl+shift+alt+a",
"command": "airgapAssistant.open"
}