web-dev-qa-db-ja.com

Sublime Text用にMacでラインアップを移動する方法は?

OS Xでは、ドキュメントで提供されているショートカット(⌘ + ⌃ + Up私はCommand + Shift + Up)Sublime Textは、行を上に移動する代わりにテキストを選択します。何か不足していますか?

21
Aurimas

http://docs.sublimetext.info/en/latest/reference/keyboard_shortcuts_osx.html によると、 Command+Ctrl+Up

  • ⌘= Command
  • ⇧= Shift
  • ⌥= Option (別名 Alt
  • ⌃ = Ctrl
  • ⎋= Esc
  • ↩︎= Return
  • ⌫= Delete (別名 Backspace

シンボルの意味については https://Apple.stackexchange.com/questions/42615/is-there-a-list-of-menu-shortcut-icons もご覧ください。

52
kennytm

キーバインディングの衝突の原因を突き止めることができなかったため、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" },
]
5
Sean McMills

「control」+「cmd」+ up(Macの場合)

  • Command+Ctrl+Up

Sublime Text Keymapsで構成されたVisual Studioコードでは、次のものも使用できます。

  • Option+Up
1
forzagreen