原因
スニペットがタブキーに割り当てられてるため
やること
1.ディレクトリ作成
2.設定を記述する
1.以下のコマンド実行
$ mkdir -p ~/Library/'Application Support'/'Sublime Text 3'/Packages/Default2.「Preferences」 > 「Key Bindings」で開かれるテキストの
102~109行目あたりの以下のコードをコメントアウトする
/* { “keys“: [“tab“], “command“: “insert_best_completion“, “args“: {“default“: “\t“, “exact“: true} }, |
| { “keys“: [“tab“], “command“: “insert_best_completion“, “args“: {“default“: “\t“, “exact“: false}, |
| “context“: |
| [ |
| { “key“: “setting.tab_completion“, “operator“: “equal“, “operand“: true }, |
| { “key“: “preceding_text“, “operator“: “not_regex_match“, “operand“: “.*\\b[0-9]+$“, “match_all“: true }, |
| ] |
}, */ |
以下のサイトを参考に

コメント