Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 955 Bytes

KEYBINDINGS.md

File metadata and controls

35 lines (26 loc) · 955 Bytes

Key Bindings

All key bindings can be overwritten with the keybindings.json file. The file is located in the application data directory. Each entry consists of a id/accelerator pair in JSON format.

Here is an example:

{
  "file.save": "CmdOrCtrl+Shift+S",
  "file.save-as": "CmdOrCtrl+S"
}

Available modifiers

  • Cmd on macOS
  • Option on macOS
  • Ctrl
  • Shift
  • Alt and AltGr on Linux and Windows
  • Super on Linux and Windows

Available keys

  • 0-9, A-Z, F1-F24 and punctuations
  • Plus, Space, Tab, Backspace, Delete, Insert, Return/Enter, Esc, Home, End and PrintScreen
  • Up, Down, Left and Right
  • PageUp and PageDown
  • Empty string "" to unset a accelerator

Available key bindings