Sublime Text has the following settings load order, accordingly to the docs:
Packages/Default/Preferences.sublime-settings
Packages/Default/Preferences (<platform>).sublime-settings
Packages/User/Preferences.sublime-settings
<Project Settings>
Packages/<syntax>/<syntax>.sublime-settings
Packages/User/<syntax>.sublime-settings
-
<Buffer Specific Settings>
https://www.sublimetext.com/docs/3/settings.html
If you would like to implement a global setting not tied to a specific package or just fix the issue:
- Core$679 show_panel_on_build setting isn’t loaded from syntax specific settings
How should you load your settings, so this hierarchy is respected?
Related topics:
- forum$35858 Load_settings(base_name) and save_settings(base_name) only searching the User package
- forum$18926 The Settings Hierarchy: Syntax-Specific over Project-Specific?