drewdeponte / sublime_guard

Sublime Text 2 Guard Plugin - helps create a smoother development workflow.
MIT License
175 stars 15 forks source link

No output in ST3 #72

Open ccschmitz opened 11 years ago

ccschmitz commented 11 years ago

Just installed in ST3 and tried to start up guard but nothing happens. I can open the console but there's no output and I don't get any sort of visual feedback.

I'm running the dev builds of ST3 on OSX Mavericks. I know you probably need more information to troubleshoot this, but I'm not sure how to find that. Let me know if there's a way I can get you more details on this.

tbueno commented 11 years ago

Yes, it happened to me as well. It is apparently working normally when you install it manually (without Package Manager).

ccschmitz commented 11 years ago

@tbueno installing manually worked for me. Thanks for the tip.

edubkendo commented 11 years ago

If you put a blank file in the plugin directory called .no-sublime-package, Package Manager won't attempt to zip it up into a sublime-package file for the InstalledPackages dir, and will instead just clone it into the Packages dir. When it works cloned, but not installed via PackageManager, that's usually an indication some resource is having issues due to being zipped. Although, often, the problem is the use of a filepath. This can be avoided by using the sublime.find_resources api.

nightpool commented 9 years ago

@edubkendo unfortunately, just using find_resources doesn't help us here, as we're trying to execute something in our zipped package. I've added the no-sublime-package file in pr #83