Skip to content

245 - Keyboard Shortcuts

Editor keyboard shortcut bindings. This is an example of a MAML document.

maml
{
  editor: "emacs"
  shortcuts: [
    {
      key: "Cmd+Shift+L"
      action: "command_palette"
      when: "terminal"
    }

    {
      key: "Ctrl+D"
      action: "select_all_occurrences"
      when: "debug"
    }

    {
      key: "Ctrl+/"
      action: "debug_run"
      when: "editor"
    }
  ]
}

See Also