I have a custom plugin that lives in …AppData\Roaming\Sublime Text 3\Packages<plugin> folder. I also have a .sublime-settings file in this folder that has some configurable settings. I get user input and update the settings file using the following APIs:
s = sublime.load_settings(.sublime-settings)
s.set("_%s" %key, value)
sublime.save_settings(.sublime-settings)
However, I notice that instead of updating the settings in my folder, it actually creates a new file in …AppData\Roaming\Sublime Text 3\Packages\User and saves the settings.
What am I missing?
Rajah