Use SignColumn for texthl in sign hl group definitions

This commit is contained in:
Mathias Fussenegger 2024-06-03 19:04:01 +02:00 committed by Mathias Fußenegger
parent 447be83aba
commit 78f45e8545

View file

@ -395,11 +395,11 @@ end
local signs = {
DapBreakpoint = { text = "B", texthl = "", linehl = "", numhl = "" },
DapBreakpointCondition = { text = "C", texthl = "", linehl = "", numhl = "" },
DapBreakpointRejected = { text = 'R', texthl = '', linehl = '', numhl = '' },
DapLogPoint = { text = 'L', texthl = '', linehl = '', numhl = '' },
DapStopped = { text = '', texthl = '', linehl = 'debugPC', numhl = '' },
DapBreakpoint = { text = "B", texthl = "SignColumn", linehl = "", numhl = "" },
DapBreakpointCondition = { text = "C", texthl = "SignColumn", linehl = "", numhl = "" },
DapBreakpointRejected = { text = 'R', texthl = "SignColumn", linehl = '', numhl = '' },
DapLogPoint = { text = 'L', texthl = "SignColumn", linehl = '', numhl = '' },
DapStopped = { text = '', texthl = "SignColumn", linehl = 'debugPC', numhl = '' },
}
local function sign_try_define(name)