OS Xでは、ドキュメントで提供されているショートカット(⌘ + ⌃ + Up
私はCommand + Shift + Up
)Sublime Textは、行を上に移動する代わりにテキストを選択します。何か不足していますか?
http://docs.sublimetext.info/en/latest/reference/keyboard_shortcuts_osx.html によると、 Command+Ctrl+Up。
シンボルの意味については https://Apple.stackexchange.com/questions/42615/is-there-a-list-of-menu-shortcut-icons もご覧ください。
キーバインディングの衝突の原因を突き止めることができなかったため、Sublime Textのユーザーキーバインディングを別の方法に設定しました。これを行うには、Sublime Textを開きます。トップメニューで[Sublime Text]> [Preferences]> [Key Bindings]に移動し、選択した代替キーバインディングを使用してこれらのハッシュを配列に追加します。
[
{ "keys": ["ctrl+alt+shift+super+up"], "command": "swap_line_up" },
{ "keys": ["ctrl+alt+shift+super+down"], "command": "swap_line_down" },
]
「control」+「cmd」+ up(Macの場合)
Sublime Text Keymapsで構成されたVisual Studioコードでは、次のものも使用できます。