Skip to content

Instantly share code, notes, and snippets.

@mradbourne
Created November 21, 2016 17:35
Show Gist options
  • Save mradbourne/d4cd4f373cdaeff84bb2797f40087af4 to your computer and use it in GitHub Desktop.
Save mradbourne/d4cd4f373cdaeff84bb2797f40087af4 to your computer and use it in GitHub Desktop.

Revisions

  1. Matt Radbourne created this gist Nov 21, 2016.
    46 changes: 46 additions & 0 deletions keybindings.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,46 @@
    [
    {
    "key": "shift+cmd+d",
    "command": "editor.action.copyLinesDownAction"
    },

    {
    "key": "cmd+l",
    "command": "expandLineSelection"
    },

    {
    "key": "cmd+ctrl+up",
    "command": "editor.action.moveLinesUpAction"
    },

    {
    "key": "cmd+ctrl+down",
    "command": "editor.action.moveLinesDownAction"
    },
    {
    "key": "cmd+d",
    "command": "editor.action.addSelectionToNextFindMatch",
    "when": "editorTextFocus"
    },
    {
    "key": "shift+cmd+,",
    "command": "vscode.previewSwagger",
    "when": "editorTextFocus"
    },
    {
    "key": "alt+cmd+/",
    "command": "editor.action.blockComment",
    "when": "editorTextFocus"
    },
    {
    "key": "ctrl+cmd+g",
    "command": "editor.action.selectHighlights",
    "when": "editorTextFocus"
    },
    {
    "key": "alt+cmd+.",
    "command": "auto-close-tag.closeTag",
    "when": "editorTextFocus"
    }
    ]