Skip to content

Instantly share code, notes, and snippets.

@micahstubbs
Last active September 17, 2019 18:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save micahstubbs/093b9477da56d8e871e287f881a051a9 to your computer and use it in GitHub Desktop.
Save micahstubbs/093b9477da56d8e871e287f881a051a9 to your computer and use it in GitHub Desktop.
Sublime Text Origami-style window pane keyboard bindings for VSCode
[
{
"key": "cmd+k up",
"command": "workbench.action.splitEditorUp"
},
{
"key": "cmd+k right",
"command": "workbench.action.splitEditorRight"
},
{
"key": "cmd+k down",
"command": "workbench.action.splitEditorDown"
},
{
"key": "cmd+k left",
"command": "workbench.action.splitEditorLeft"
},
{
"key": "cmd+k up",
"command": "-workbench.action.moveActiveEditorGroupUp"
},
{
"key": "cmd+k right",
"command": "-workbench.action.moveActiveEditorGroupRight"
},
{
"key": "cmd+k down",
"command": "-workbench.action.moveActiveEditorGroupDown"
},
{
"key": "cmd+k left",
"command": "-workbench.action.moveActiveEditorGroupLeft"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment