I just installed the Mac OSX Alpha and wanted to get started trying to write a plugin but i’m getting this error in my console whenever I save anything after importing sublimeplugin
“ImportError: No module named sublimeplugin”
Here are the contents of my file I’m doing just to test things out:
[code]import sublime, sublimeplugin
print “plugin loaded”
class Test1Command(sublimeplugin.TextCommand):
def run(self, view, args):
print “command run”[/code]
Any ideas on what I may be doing wrong or missing?