-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It's now harder to hack on the pugin: existing ide-sessions no longer restart automatically #30
Comments
possibly related to #29 |
The restart command had no tests written against it either - I'll have a look at fixing it tonight! |
Thanks for all the good work ! 👍 I hope my bug reports do not seem negative. |
When we had all the code in 1 module, the whole plugin was conveniently restarted by Sublime's module reload. Now the plugin is broken up over several modules, I think the following is happening:
In other words, your plugin keeps running but the new stuff doesn't talk to the old stuff. This thread discusses the problem: https://www.sublimetext.com/forum/viewtopic.php?f=6&t=6777 The tests are a way to get some quick iteration on a feature, but I agree that having the plugin reload itself (in the right order) is great for hacking away. |
Before recent updates, when I was changing the plugin source code, stack-ide sessions in other sublimetext instances were restarting on their own, picking my latest modifications. It was very convenient to hack on the editor, and change things.
Now, It's no longer the case, so it' much harder to tweak the plugin or test fixes.
(the fix may be easy, but I'm not really familiar with python / subl hacking)
The text was updated successfully, but these errors were encountered: