forked from kemayo/sublime-text-git
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstatusbar.py
61 lines (52 loc) · 2.57 KB
/
statusbar.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
import re
import sublime
import sublime_plugin
from .git import GitTextCommand, do_when, are_commands_working
class GitBranchStatusListener(sublime_plugin.EventListener):
def on_activated(self, view):
view.run_command("git_branch_status")
def on_post_save(self, view):
view.run_command("git_branch_status")
class GitBranchStatusCommand(GitTextCommand):
def run(self, view):
s = sublime.load_settings("Git.sublime-settings")
if s.get("statusbar_branch"):
self.run_command(['git', 'rev-parse', '--abbrev-ref', 'HEAD'], self.branch_done, show_status=False, no_save=True)
else:
self.view.set_status("git-branch", "")
if (s.get("statusbar_status")):
do_when(
lambda: not are_commands_working(),
self.run_command,
['git', 'status', '--porcelain'], self.status_done, show_status=False, no_save=True)
else:
self.view.set_status("git-status", "")
def branch_done(self, result):
self.view.set_status("git-branch", "git branch: " + result.strip())
def status_done(self, result):
lines = [line for line in result.splitlines() if re.match(r'^[ MADRCU?!]{1,2}\s+.*', line)]
index = [line[0] for line in lines if not line[0].isspace()]
working = [line[1] for line in lines if not line[1].isspace()]
self.view.set_status("git-status-index", "index: " + self.status_string(index))
self.view.set_status("git-status-working", "working: " + self.status_string(working))
def status_string(self, statuses):
s = sublime.load_settings("Git.sublime-settings")
symbols = s.get("statusbar_status_symbols")
if not statuses:
return symbols['clean']
status = []
if statuses.count('M'):
status.append("%d%s" % (statuses.count('M'), symbols['modified']))
if statuses.count('A'):
status.append("%d%s" % (statuses.count('A'), symbols['added']))
if statuses.count('D'):
status.append("%d%s" % (statuses.count('D'), symbols['deleted']))
if statuses.count('?'):
status.append("%d%s" % (statuses.count('?'), symbols['untracked']))
if statuses.count('U'):
status.append("%d%s" % (statuses.count('U'), symbols['conflicts']))
if statuses.count('R'):
status.append("%d%s" % (statuses.count('R'), symbols['renamed']))
if statuses.count('C'):
status.append("%d%s" % (statuses.count('C'), symbols['copied']))
return symbols['separator'].join(status)