Skip to content
This repository has been archived by the owner on Jan 7, 2023. It is now read-only.

Commit

Permalink
Merge pull request #11 from datwaft/dev
Browse files Browse the repository at this point in the history
Bugfix: fixed Signify bubble
  • Loading branch information
datwaft committed Dec 10, 2020
2 parents 02f9bd6 + e8794f5 commit 659f4d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/bubbly/plugin.lua
Expand Up @@ -107,7 +107,7 @@
-- Signify bubble
local function signify_bubble(inactive)
if inactive then return '' end
if vim.fn.exists('sy#repo#get_stats') == 0 then return '' end
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
Expand Down

0 comments on commit 659f4d9

Please sign in to comment.