Skip to content

Instantly share code, notes, and snippets.

@shotaK
Created November 3, 2021 11:41
Show Gist options
  • Save shotaK/3d1d3d1a660d50b1631ef26e8cb9e4ba to your computer and use it in GitHub Desktop.
Save shotaK/3d1d3d1a660d50b1631ef26e8cb9e4ba to your computer and use it in GitHub Desktop.
VsCode mouse up/down macros
{
"key": "ctrl+up",
"command": "cursorMove",
"args": {
"to": "up",
"by": "line",
"value": 4
},
"when": "editorTextFocus"
},
{
"key": "ctrl+down",
"command": "cursorMove",
"args": {
"to": "down",
"by": "line",
"value": 4
},
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+up",
"command": "cursorMove",
"args": {
"to": "up",
"by": "line",
"value": 15
},
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+down",
"command": "cursorMove",
"args": {
"to": "down",
"by": "line",
"value": 15
},
"when": "editorTextFocus"
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment