Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lua/dap/breakpoints.lua
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ function M.update(breakpoint)
ns,
get_sign_name(bp),
bp.buf,
{ lnum = bp.line; priority = 11; }
{ lnum = bp.line; priority = 21; }
)
end
bp.state.verified = breakpoint.verified
Expand Down Expand Up @@ -80,7 +80,7 @@ function M.set_state(bufnr, lnum, state)
ns,
'DapBreakpointRejected',
bufnr,
{ lnum = lnum; priority = 11; }
{ lnum = lnum; priority = 21; }
)
end
end
Expand Down Expand Up @@ -121,7 +121,7 @@ function M.toggle(opts, bufnr, lnum)
ns,
sign_name,
bufnr,
{ lnum = lnum; priority = 11; }
{ lnum = lnum; priority = 21; }
)
if sign_id ~= -1 then
bp_by_sign[sign_id] = bp
Expand Down
2 changes: 1 addition & 1 deletion lua/dap/session.lua
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ local function jump_to_frame(session, frame, preserve_focus_hint, stopped)
return
end
vim.fn.bufload(bufnr)
local ok, failure = pcall(vim.fn.sign_place, 0, session.sign_group, 'DapStopped', bufnr, { lnum = frame.line; priority = 12 })
local ok, failure = pcall(vim.fn.sign_place, 0, session.sign_group, 'DapStopped', bufnr, { lnum = frame.line; priority = 22 })
if not ok then
utils.notify(failure, vim.log.levels.ERROR)
end
Expand Down