Skip to content Skip to sidebar Skip to footer

Sublime Text Plugin Is Not Working

I'm using Sublime text 3 and I'm writing a simple plugin, the problem that i have is that whenever i put myplugin.py in the Packages/User folder I get the result perfectly. BUT whe

Solution 1:

Actually I was missing the fact that a sublime text plugin should be living in the Packages folder and not Packages/User folder

Solution 2:

You need to have a file '__init__.py' created in the myplugin folder with that file. Otherwise you will be unable to load the file as a module.

Post a Comment for "Sublime Text Plugin Is Not Working"