forked from jisaacks/GitGutter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
git_gutter_events.py
76 lines (57 loc) · 2.11 KB
/
git_gutter_events.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import sublime
import sublime_plugin
try:
from GitGutter.view_collection import ViewCollection
except ImportError:
from view_collection import ViewCollection
class GitGutterEvents(sublime_plugin.EventListener):
def __init__(self):
self.load_settings()
# Synchronous
def on_modified(self, view):
if not self.live_mode:
return None
if not self.non_blocking:
ViewCollection.add(view)
def on_clone(self, view):
if not self.non_blocking:
ViewCollection.add(view)
def on_post_save(self, view):
if not self.non_blocking:
ViewCollection.add(view)
def on_load(self, view):
if not self.non_blocking and not self.live_mode:
ViewCollection.add(view)
def on_activated(self, view):
if not self.non_blocking and self.focus_change_mode:
ViewCollection.add(view)
# Asynchronous
def on_modified_async(self, view):
if not self.live_mode:
return None
if self.non_blocking:
ViewCollection.add(view)
def on_clone_async(self, view):
if self.non_blocking:
ViewCollection.add(view)
def on_post_save_async(self, view):
if self.non_blocking:
ViewCollection.add(view)
def on_load_async(self, view):
if self.non_blocking and not self.live_mode:
ViewCollection.add(view)
def on_activated_async(self, view):
if self.non_blocking and self.focus_change_mode:
ViewCollection.add(view)
# Settings
def load_settings(self):
self.settings = sublime.load_settings('GitGutter.sublime-settings')
self.live_mode = self.settings.get('live_mode')
if self.live_mode is None:
self.live_mode = True
self.focus_change_mode = self.settings.get('focus_change_mode')
if self.focus_change_mode is None:
self.focus_change_mode = True
self.non_blocking = self.settings.get('non_blocking')
if self.non_blocking is None or int(sublime.version()) < 3014:
self.non_blocking = False