Last active
July 11, 2019 22:00
-
-
Save u1735067/b457a484a57802b704e6ed7f7d273db0 to your computer and use it in GitHub Desktop.
VS Code: move line to the right buffer / editor / group
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": "ctrl+alt+right", | |
"command": "-workbench.action.moveEditorToNextGroup" | |
}, | |
{ | |
"key": "ctrl+alt+right", | |
"command": "multiCommand.moveLineRightGroup" | |
} | |
] |
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
{ | |
// 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