condemil / gist

Sublime Text plugin for creating new Gists from selected text
MIT License
725 stars 136 forks source link

Added plugin_loaded to fix an issue that it cannot read the setting file... #139

Closed jaewook77 closed 10 years ago

jaewook77 commented 10 years ago

It used to work before, but after some updates on this plugin, loading setting doesn't work anymore in ST3. The issue was that it reads the setting file before the plugin is actually loaded, resulting in the setting variable is None. So, I have added plugin_loaded method to update the settings.loaded_settings, get, and set attributes. I have tested it in my ST3 and work fine. Pls. consider to apply it to your master branch. Thanks,

condemil commented 10 years ago

Thank you.