Created
November 3, 2021 11:41
-
-
Save shotaK/3d1d3d1a660d50b1631ef26e8cb9e4ba to your computer and use it in GitHub Desktop.
VsCode mouse up/down macros
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
{ | |
"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