Skip to content

Commit

Permalink
fix(ui): breaking change in gitsigns internal api
Browse files Browse the repository at this point in the history
  • Loading branch information
snelling-a committed May 26, 2023
1 parent 072b38e commit 99e5a40
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion plugin/statuscolumn.lua
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ function M.column()
local sign, git_sign
for _, s in ipairs(M.get_signs()) do
if s.name:find("GitSign") then
s.text = icons.gitsigns[s.name]
-- HACK: breaking change in internal api https://github.com/lewis6991/gitsigns.nvim/pull/799
s.text = icons.gitsigns[s.texthl]
git_sign = s
else
sign = s
Expand Down

0 comments on commit 99e5a40

Please sign in to comment.