We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8adbc8 commit d06235bCopy full SHA for d06235b
.gitignore
@@ -1,3 +1,5 @@
1
+_before.py
2
+_after.py
3
bin/**
4
pkg/**
5
!.keep
GoSublime.py
@@ -22,16 +22,20 @@
22
print("GoSublime: %s" % execErr)
23
24
def loadable_mods():
25
+ from . import _before
26
+ from . import _after
27
from .gosubl import gs
28
from .gosubl import sh
29
from .gosubl import margo
30
from .gosubl import mg9
31
32
return [
33
+ ('_before', _before),
34
('gs', gs),
35
('sh', sh),
36
('margo', margo),
37
('mg9', mg9),
38
+ ('_after', _after),
39
]
40
41
def plugin_loaded():
_after.py
@@ -0,0 +1,3 @@
+
+def gs_init(m={}):
+ pass
_before.py
0 commit comments