forked from vladimir-kotikov/clink-completions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgit_prompt.lua
91 lines (74 loc) · 3.04 KB
/
git_prompt.lua
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
local gitutil = require('gitutil')
-- TODO: cache config based on some modification indicator (system mtime, hash)
-- this code is stolen from https://github.com/Dynodzzo/Lua_INI_Parser/blob/master/LIP.lua
-- Resolve licensing issues before exposing
local function load_ini(fileName)
assert(type(fileName) == 'string', 'Parameter "fileName" must be a string.')
local file = io.open(fileName, 'r')
if not file then return nil end
local data = {};
local section;
for line in file:lines() do
local tempSection = line:match('^%[([^%[%]]+)%]$');
if tempSection then
section = tonumber(tempSection) and tonumber(tempSection) or tempSection;
data[section] = data[section] or {}
end
local param, value = line:match('^%s-([%w|_]+)%s-=%s+(.+)$')
if(param and value ~= nil)then
if(tonumber(value))then
value = tonumber(value);
elseif(value == 'true')then
value = true;
elseif(value == 'false')then
value = false;
end
if(tonumber(param))then
param = tonumber(param);
end
data[section][param] = value
end
end
file:close();
return data;
end
---
-- Escapes every non-alphanumeric character in string with % symbol. This is required
-- because string.gsub treats plain strings with some symbols (e.g. dashes) as regular
-- expressions (taken from http://stackoverflow.com/a/34953646)
-- @param {string} text Text to escape
-- @returns {string} Escaped text
---
local function escape(text)
return text and text:gsub("([^%w])", "%%%1") or ""
end
local git = {}
git.get_config = function (git_dir, section, param)
if not git_dir then return nil end
if (not param) or (not section) then return nil end
local git_config = load_ini(git_dir..'/config')
if not git_config then return nil end
return git_config[section] and git_config[section][param] or nil
end
local function git_prompt_filter()
local git_dir = gitutil.get_git_dir()
if not git_dir then return false end
-- if we're inside of git repo then try to detect current branch
local branch = gitutil.get_git_branch(git_dir)
if not branch then return false end
-- for remote and ref resolution algorithm see https://git-scm.com/docs/git-push
local remote_to_push = git.get_config(git_dir, 'branch "'..branch..'"', 'remote') or ''
local remote_ref = git.get_config(git_dir, 'remote "'..remote_to_push..'"', 'push') or
git.get_config(git_dir, 'push', 'default')
local text = remote_to_push
if (remote_ref) then text = text..'/'..remote_ref end
if (text == '') then
clink.prompt.value = clink.prompt.value:gsub(escape('('..branch), '%1'..text)
else
clink.prompt.value = clink.prompt.value:gsub(escape('('..branch), '%1 -> '..text)
end
return false
end
-- Register filter with priority 60 which is greater than
-- Cmder's git prompt filters to override them
clink.prompt.register_filter(git_prompt_filter, 60)