Skip to content

Commit

Permalink
fix(dap_breakpoints): with file_icons=false (closes #1093)
Browse files Browse the repository at this point in the history
  • Loading branch information
ibhagwan committed Mar 20, 2024
1 parent 5104ac1 commit c0ff706
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lua/fzf-lua/providers/dap.lua
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,10 @@ M.breakpoints = function(opts)
for _, b in ipairs(bps) do
vim.schedule(function()
local entry = make_entry.lcol(b, opts)
entry = string.format("[%s] %s",
entry = string.format("[%s]%s%s",
-- tostring(opts._locations[i].bufnr),
utils.ansi_codes.yellow(tostring(b.bufnr)),
utils.nbsp,
make_entry.file(entry, opts))
cb(entry, function()
coroutine.resume(co)
Expand Down

0 comments on commit c0ff706

Please sign in to comment.