Tbpgr Blog

Employee Experience Engineer tbpgr(てぃーびー) のブログ

Sublime Text2 | 行の入れ替えのキーバインドをEclipseに合わせる

概要

行の入れ替えのキーバインドEclipseに合わせる

内容

行の入れ替えのキーバインドEclipseに合わせます。
Sublime TextではデフォルトでCtrl+Shift+上下になっています。
これをEclipseと同様にAlt+上下に変更します。

キー設定

{ "keys": ["alt+up"], "command": "swap_line_up" },
{ "keys": ["alt+down"], "command": "swap_line_down" },