Skip to content

Commit 61d59cb

Browse files
authored
Update hotkeys.py
1 parent 98659f3 commit 61d59cb

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

nimlime_core/commands/hotkeys.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,9 @@
1111

1212

1313
def gen_sync_settings(key, default):
14-
print('f')
1514
global sync_list
1615

1716
def sync_settings():
18-
print('e', key)
1917
v = sublime.active_window().active_view()
2018
v.settings().set(key, settings.get(key, default))
2119

@@ -29,19 +27,15 @@ def sync_settings():
2927

3028
class HotkeySyncer(EventListener):
3129
def sync(self):
32-
print('d')
3330
global sync_list
3431
for callback in sync_list.values():
3532
callback()
3633

3734
def on_new(self, view):
38-
print('c')
3935
self.sync()
4036

4137
def on_clone(self, view):
42-
print('b')
4338
self.sync()
4439

4540
def on_load(self, view):
46-
print('a')
4741
self.sync()

0 commit comments

Comments
 (0)