Skip to content

Instantly share code, notes, and snippets.

@jonsuh
Last active September 26, 2018 20:03
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonsuh/b70a1e5652946f7c6594def1cf10a5f7 to your computer and use it in GitHub Desktop.
Save jonsuh/b70a1e5652946f7c6594def1cf10a5f7 to your computer and use it in GitHub Desktop.
VSCode Split/Join editors to the Left/Right
[
{
"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"
}
]
{
"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,
}
@jonsuh
Copy link
Author

jonsuh commented Sep 20, 2018

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment