LoginSignup
1
1

More than 5 years have passed since last update.

SublimeLinter が機能したりしなかったりするバグの修正方法

Last updated at Posted at 2016-09-15
alert
SublimeLinter could not determine your shell PATH.
It is unlikely that any linters will work.
Please see the troubleshooting guide for info on how to debug PATH problems.

☝️のアラート出る場合はshell_timeout値を増やす方法を試してみましょう。
https://github.com/SublimeLinter/SublimeLinter3/issues/253

デフォルトでは10(秒)となっているが、
イシュー・スレッドで、「それだと短かすぎる」「100にしている」などのコメントがあったので
とりあえず60と設定したら治りました。

SublimeLinter.sublime-settings
(メニュー・バー / Sublime Text / Preferences / Package Settings / SublimeLinter / Settings - User)

SublimeLinter.sublime-settings
{
    "user": {
        ...
        "linters": {
            ...
            }
        },
        ...
        "shell_timeout": 60,
        ...
    }
}
1
1
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
1
1