Last active
September 19, 2024 21:37
-
-
Save jonsuh/b70a1e5652946f7c6594def1cf10a5f7 to your computer and use it in GitHub Desktop.
VSCode Split/Join editors to the Left/Right
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
[ | |
{ | |
"key": "cmd+k cmd+right", | |
"command": "macros.editorSplitRight" | |
}, | |
{ | |
"key": "cmd+k cmd+left", | |
"command": "macros.editorSplitLeft" | |
}, | |
{ | |
"key": "cmd+k shift+cmd+right", | |
"command": "macros.editorCloseRight" | |
}, | |
{ | |
"key": "cmd+k shift+cmd+left", | |
"command": "macros.editorCloseLeft" | |
} | |
] |
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
{ | |
"macros": { | |
"editorSplitRight": [ | |
"workbench.action.moveEditorToNextGroup", | |
"workbench.action.moveActiveEditorGroupLeft", | |
], | |
"editorSplitLeft": [ | |
"workbench.action.moveEditorToNextGroup", | |
], | |
"editorCloseRight": [ | |
"workbench.action.joinTwoGroups", | |
], | |
"editorCloseLeft": [ | |
"workbench.action.focusPreviousGroup", | |
"workbench.action.joinTwoGroups", | |
"workbench.files.action.openPreviousWorkingFile", | |
], | |
}, | |
"workbench.editor.closeEmptyGroups": false, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Requires the
macros
extension: https://marketplace.visualstudio.com/items?itemName=geddski.macros