mirror of
https://github.com/lewis6991/gitsigns.nvim
synced 2025-02-15 11:46:49 +00:00
fix(signs): passing false to sign_define options (2)
This commit is contained in:
parent
f6d93f90be
commit
16e5ecc5f5
4
lua/gitsigns/signs/vimfn.lua
generated
4
lua/gitsigns/signs/vimfn.lua
generated
@ -117,8 +117,8 @@ function M:add(bufnr, signs)
|
||||
define_sign(sign_name, {
|
||||
texthl = cs.hl,
|
||||
text = config.signcolumn and cs.text .. count_char or '',
|
||||
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,
|
||||
})
|
||||
end
|
||||
|
||||
|
@ -117,8 +117,8 @@ function M:add(bufnr: integer, signs: {M.Sign})
|
||||
define_sign(sign_name, {
|
||||
texthl = cs.hl,
|
||||
text = config.signcolumn and cs.text..count_char or '',
|
||||
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
|
||||
})
|
||||
end
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user