Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@dlidstrom
Last active December 17, 2018 15:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dlidstrom/660f56615c3e00a0d7b3a7cbb9de900d to your computer and use it in GitHub Desktop.
Save dlidstrom/660f56615c3e00a0d7b3a7cbb9de900d to your computer and use it in GitHub Desktop.
Visual Studio Code Keybindings
// 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