Skip to content

Commit

Permalink
fix(signs): passing false to sign_define options
Browse files Browse the repository at this point in the history
Fixes #604
  • Loading branch information
lewis6991 committed Aug 13, 2022
1 parent ce636fa commit 29468d8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lua/gitsigns/signs/vimfn.lua

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions teal/gitsigns/signs/vimfn.tl
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ local function define_signs(obj: B, redefine: boolean)
define_sign(get_sign_name(stype), {
texthl = cs.hl,
text = config.signcolumn and cs.text or nil,
numhl = config.numhl and cs.numhl,
linehl = config.linehl and cs.linehl
numhl = config.numhl and cs.numhl or nil,
linehl = config.linehl and cs.linehl or nil
}, redefine)
end
end
Expand Down

0 comments on commit 29468d8

Please sign in to comment.