is it available move selected text right and left side 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"
},

Tags:

Misc Example