Skip to content

Commit

Permalink
Use SignColumn for texthl in sign hl group definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
mfussenegger committed Jun 3, 2024
1 parent 447be83 commit 78f45e8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lua/dap.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 78f45e8

Please sign in to comment.