We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98659f3 commit 61d59cbCopy full SHA for 61d59cb
nimlime_core/commands/hotkeys.py
@@ -11,11 +11,9 @@
11
12
13
def gen_sync_settings(key, default):
14
- print('f')
15
global sync_list
16
17
def sync_settings():
18
- print('e', key)
19
v = sublime.active_window().active_view()
20
v.settings().set(key, settings.get(key, default))
21
@@ -29,19 +27,15 @@ def sync_settings():
29
27
30
28
class HotkeySyncer(EventListener):
31
def sync(self):
32
- print('d')
33
34
for callback in sync_list.values():
35
callback()
36
37
def on_new(self, view):
38
- print('c')
39
self.sync()
40
41
def on_clone(self, view):
42
- print('b')
43
44
45
def on_load(self, view):
46
- print('a')
47
0 commit comments