Created
August 22, 2019 09:55
-
-
Save jihuichoi/42cf86b3610266bd7e35e2f9737b1293 to your computer and use it in GitHub Desktop.
to navigate backward/forward using mouse button 4,5 on mac
This file contains hidden or 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
[ | |
// move backward/forward using mouse button 4, 5 | |
{ // remove exsiting bind | |
"key": "", | |
"command": "editor.action.indentLines", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ // remove exsiting bind | |
"key": "", | |
"command": "editor.action.outdentLines", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ // new bind for button 4 or 5 | |
"key": "cmd+[", | |
"command": "workbench.action.navigateBack", | |
}, | |
{ // new bind for button 4 or 5 | |
"key": "cmd+]", | |
"command": "workbench.action.navigateForward", | |
}, | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment