LoginSignup
0
0

More than 5 years have passed since last update.

SublimeText3のやっておきたい初期設定(備忘録)

Last updated at Posted at 2017-11-13

目的

備忘録。よく使うが、インストールしたあとに設定し忘れたりして、毎回調べてしまうものをまとめておく。

Word Wrap のショートカット設定

文字折り返しのトグルのショートカット設定

メニュー → Preferences → KeyBindings → 以下のコードを追加

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

行削除のショートカット

行削除のショートカット。デフォルトで設定はされているが、eclipse育ちの自分はDを使うようにしてるため。

メニュー → Preferences → KeyBindings → 以下のコードを追加

{ "keys": ["super+shift+d"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} }

Increment Selection のショートカット

プラグイン、Increment Selection のショートカット

{ "keys": ["shift+ctrl+0"], "command": "multi_number_input"}
0
0
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
0
0