Skip to content

Instantly share code, notes, and snippets.

@u1735067
Last active July 11, 2019 22:00
Show Gist options
  • Save u1735067/b457a484a57802b704e6ed7f7d273db0 to your computer and use it in GitHub Desktop.
Save u1735067/b457a484a57802b704e6ed7f7d273db0 to your computer and use it in GitHub Desktop.
VS Code: move line to the right buffer / editor / group
[
{
"key": "ctrl+alt+right",
"command": "-workbench.action.moveEditorToNextGroup"
},
{
"key": "ctrl+alt+right",
"command": "multiCommand.moveLineRightGroup"
}
]
{
// Use https://marketplace.visualstudio.com/items?itemName=ryuta46.multi-command
// Because https://marketplace.visualstudio.com/items?itemName=geddski.macros seems to have issues with async actions
"multiCommand.commands": [
{
"command": "multiCommand.moveLineRightGroup",
"interval": 30,
"sequence": [
"cursorHome",
"cursorDownSelect",
"editor.action.clipboardCutAction",
"workbench.action.focusRightGroup",
"cursorHome",
//"cursorBottomSelect",
"editor.action.clipboardPasteAction",
"workbench.action.focusLeftGroup"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment