Fixed signify component apearing on non repo buffer (#58)

* Fixed signify component apearing on non repo buffer
This commit is contained in:
Shadman 2021-01-11 08:44:53 +06:00 committed by GitHub
parent 2c1888e947
commit 8ff22c3935
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 6 deletions

View File

@ -1,13 +1,11 @@
local function signify()
if vim.fn.exists('*sy#repo#get_stats') == 0 then return '' end
local added, modified, removed = unpack(vim.fn['sy#repo#get_stats']())
if added == -1 then added = 0 end
if modified == -1 then modified = 0 end
if removed == -1 then removed = 0 end
if added == -1 then return '' end
local data = {
'+', added,
'~', modified,
'-', removed
'+'..added,
'-'..removed,
'~'..modified,
}
return table.concat(data, ' ')
end