Rufusmedia
12/28/2017 - 5:25 PM

Keybindings for Visual Studio Code

Simple keyboard shortcuts for commenting and opening tags

// Place your key bindings in this file to overwrite the defaults
[
    {
        "key": "ctrl+cmd+space",
        "command": "editor.action.insertSnippet",
        "when": "editorTextFocus",
        "args": {
            "snippet": "<!-- $0 -->"
        }
    },
    {
        "key": "ctrl+cmd+alt+space",
        "command": "editor.action.insertSnippet",
        "when": "editorTextFocus",
        "args": {
            "snippet": "<?php $0 ?>"
        }
    },
    {
        "key": "ctrl+cmd+u",
        "command": "sftp.trans.remote"
    },
    {
        "key": "ctrl+cmd+c",
        "command": "sftp.config.default"
    }
]