I can not change my color scheme file in Preferences → Settings - User, SublimeLinter installs its own. When I press Ctrl+S, the color scheme file changes automatically.
With Sublimerge I compared the files SashaSublime.tmTheme и SashaSublime (SL).tmTheme. The second file is added to all 3 settings.
<dict>
<key>name</key>
<string>SublimeLinter Gutter Mark</string>
<key>scope</key>
<string>sublimelinter.gutter-mark</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#FFFFFF</string>
</dict>
</dict><dict>
<key>name</key>
<string>SublimeLinter Warning</string>
<key>scope</key>
<string>sublimelinter.mark.warning</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#DDB700</string>
</dict>
</dict><dict>
<key>name</key>
<string>SublimeLinter Error</string>
<key>scope</key>
<string>sublimelinter.mark.error</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#D02000</string>
</dict>
</dict>
But I can easily add these lines in my SashaSublime.tmTheme file. In issues of SublimeLinter write:
If the SL color scheme is not used, the linter is greatly crippled and might as well be disabled. So disabling SL, editing the original color scheme, then enabling SL again is the only feasible approach, however inconvenient that might be.
Unless you are willing to pay for my time, you will have to live with this small (and infrequent) inconvenience.
Ctrl+Shift+P → Package Control: Disable Package → I disabled SublimeLinter, SublimeLinter-csslint, SublimeLinter-jshint, SublimeLinter-html-tidy, but my color scheme file is still automatically changes in the Preferences file → Settings - User file.
What can I do to my SublimeLinter worked and that did not change my color scheme file?
Thanks.