Neovim sign gutter, designed to be mostly VCS agnostic
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Make sign error human readable.

+8 -1
+8 -1
lua/vcsigns/sign.lua
··· 121 121 end 122 122 return { text = text, hl = M.signs.hl.change_delete } 123 123 end 124 - error(string.format("Invalid sign type %d with count %d.", sign.type, count)) 124 + error( 125 + string.format( 126 + "Invalid sign type %s (%d) with count %d.", 127 + M.sign_type_to_string(sign.type), 128 + sign.type, 129 + count 130 + ) 131 + ) 125 132 end 126 133 127 134 --- Try avoiding overlaps by flipping delete below into delete above.