Skip to content

Instantly share code, notes, and snippets.

View antmdvs's full-sized avatar

Tony Davis antmdvs

View GitHub Profile
@antmdvs
antmdvs / keybindings.json
Created September 26, 2016 19:25
Visual Studio Code keybindings that swap insertLineBefore/insertLineAfter to be consistent with Visual Studio Proper
[
// swap these to be consistent with the defaults for Visual Studio proper
{
"key": "ctrl+enter",
"command": "editor.action.insertLineBefore",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+enter",
"command": "editor.action.insertLineAfter",