Answers:
查看 colinta的SublimeMoveText。作为常规插件安装(程序包管理器将其称为“ MoveText”),但必须手动设置键绑定。这是我所做的:
// MoveText
// move_text_left: Moves the selected text one character to the left
// move_text_right: Moves the selected text one character to the right
// move_text_up: Moves the selected text one line up
// move_text_down: Moves the selected text one line down
{ "keys": ["ctrl+shift+n"], "command": "move_text_left" },
{ "keys": ["ctrl+shift+m"], "command": "move_text_right" },
突出显示您要移动的内容。如果多于一行,请按照建议的@Jivings使用列选择(在Win / Linux上,按Shift +右键单击,在OSX上,按Option +鼠标)。然后使用快捷键向左/向右移动文本。您还可以设置快捷键以将选定的上/下一行移动。
super+ctrl+left/right
键绑定结合使用。同样,MoveText 按字符位置而不是按单词移动文本,这对于常规的文本编辑来说会比较方便。
要左右移动线条,请使用:
⌘+]或⌘+ [
要上下移动线条,请使用:
⌘+ Ctrl + UpArrow或downArrow