Keyboard Bindings & Shortcut Mapping

// keymaps.json Structure

To bind actions to custom hotkeys, edit the keybindings configuration profile:

~/.config/termstudio/keymaps.json

// Creating Custom Keys

Define an action and map it to a specific key combination:

{
  "key": "ctrl+d",
  "command": "editor.action.deleteLines",
  "when": "editorTextFocus"
}

// Multi-key Chords

TermStudio supports sequential key combinations (like pressing Ctrl + K followed by Ctrl + C to comment out a block of text). Map these chords by separating keys with spaces in the key config.