Last active
December 17, 2018 15:52
-
-
Save dlidstrom/660f56615c3e00a0d7b3a7cbb9de900d to your computer and use it in GitHub Desktop.
Visual Studio Code Keybindings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Place your key bindings in this file to overwrite the defaults | |
[ | |
{ | |
"key": "ctrl+down", | |
"command": "editorScroll", | |
"args": { | |
"to": "down", | |
"by": "line", | |
"revealCursor": true | |
} | |
}, | |
{ | |
"key": "ctrl+up", | |
"command": "editorScroll", | |
"args": { | |
"to": "up", | |
"by": "line", | |
"revealCursor": true | |
} | |
}, | |
{ | |
"key": "ctrl+k t", | |
"command": "haskero.insertType", | |
"when": "editorTextFocus" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment