Answers for "is it available move selected text right and left side"

0

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"
},
Posted by: Guest on December-30-2020

Code answers related to "is it available move selected text right and left side"

Browse Popular Code Answers by Language