1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
name = "Syntax error checker plugin"
authors = ["Lateef Alabi-Oki <mystilleef@gmail.com>"]
languages = ["python"]
version = 0.2
autoload = True
class_name = "SyntaxErrorCheckerPlugin"
short_description = "Check Python source code for syntax errors."
long_description = """Check Python source code for syntax errors.
Press F2 to check document."""
class SyntaxErrorCheckerPlugin(object):
def __init__(self, editor):
self.__editor = editor
self.__trigger = None
def load(self):
from PythonSyntaxErrorChecker.Trigger import Trigger
self.__trigger = Trigger(self.__editor)
return
def unload(self):
self.__trigger.destroy()
return
|