3
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

SublimeText3のタブを言語別に設定する

Posted at

これについてはいろんな方々が投稿してるんですが、細かい所で詰まったのでメモ。

ユーザー設定でタブを4文字にしてるんですが、他の言語の時は2文字にしたい時が頻発したので、Pythonの時だけタブを4文字に設定していきます。

①コマンドパレットから「Preferences: Browse Packages」と検索
②Userフォルダー内に「言語名.sublime-settings」のような感じで設定ファイルを作る

Python.sublime-settings
{
    "tab_size": 4,
}

注意点としてファイル名は最初の文字は大文字がマストっぽいんですが、それ以降は言語ごとに臨機応変な対応が求められるっぽいです。
(例)
正 Python、HTML
誤 PYTHON、Html

3
5
1

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
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?