LoginSignup
3
4

More than 5 years have passed since last update.

Sublime Text: Word Wrap(行末折返し)の切替にショートカットキーを割り当てる

Last updated at Posted at 2015-10-13

ゴール

ショートカットキーひとつでword wrap: toggle コマンドを動作させる

方法

"Preferences" -> "Key Bindings -- User"をクリック
キーバインディング設定のJSONファイルが出てくるので以下の要素を追加します

Windows,Mac共通
{ "keys": ["ctrl+shift+w"], "command": "toggle_setting", "args": {"setting": "word_wrap"} }

中括弧のなかにいれましょう。
すでに要素が入っている場合は前の要素にカンマをつけてこれを次の行に入れましょう。

※この部分編集リクエスト歓迎です。

これを追加するとctrl+shift+eで行末折り返しができます。

参考

3
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
4