vs code move selected text left or right code example
Example: is it available move selected text right and left side
{
"key": "alt+u",
"command": "multiCommand.moveCopyUp",
"when": "!editorHasSelection && textInputFocus && !editorReadOnly"
},
{
"key": "alt+u",
"command": "multiCommand.copyAndMoveSelectionUp",
"when": "editorHasSelection && textInputFocus && !editorReadOnly"
},
{
"key": "alt+d",
"command": "multiCommand.copyAndMoveSelectionDown",
"when": "editorHasSelection && textInputFocus && !editorReadOnly"
},
{
"key": "alt+d",
"command": "multiCommand.moveCopyDown",
"when": "!editorHasSelection && textInputFocus && !editorReadOnly"
},