1. Briefly
I have Preferences.sublime-settings
file in my theme package. Is it possible, if user install my package, that my sublime-settings
file to rewrite User\Preferences.sublime-settings
file?
2. Detail
For example, user have User\Preferences.sublime-settings
file:
{
"highlight_line": false,
"highlight_modified_tabs": false,
}
User install my package, where I set:
{
"highlight_line": true,
"highlight_modified_tabs": true,
}
Is it possible, that Package.sublime-settings
> User\Preferences.sublime-settings
; lines and modified tabs highlight for user, despite false
value in a User\Preferences.sublime-settings
?
3. Did not help
- I read documentation, but I don’t find
Packages/<package>/<package>.sublime-settings
item, onlyPackages/<syntax>/<syntax>.sublime-settings
item, but my package is not a syntax. - I try to add in my package settings, rewrite
User\Preferences.sublime-settings
file settings, → no effect for me.
Thanks.