dap-info
is a lua plugin for Neovim to help show info from breakpoints created using nvim-dap
{
'jonathan-elize/dap-info.nvim',
dependencies = {
"mfussenegger/nvim-dap",
}
}
require("dap-info").setup({})
Below is the default config, you can change it according to your needs.
require('persistent-breakpoints').setup{
-- options used for virtual text ui
virt_text_opts = {
namespace = "dap-info",
prefix = "●",
suffix = "",
spacing = 4,
},
}
Goes to the next breakpoint in file and tries to reveal info about it if possible
Goes to the previous breakpoint in file and tries to reveal info about it if possible
Tries to reveal info about the breakpoint on the current line if possible
Tries to allow you to update a log point message or breakpoint condition for a breakpoint on the line you are currently on.
Clears virtual text revealing information about breakpoints within current buffer.
Shows virtual text revealing information about breakpoints within current buffer.
Reloads virtual text revealing information about breakpoints within current buffer. (Essentially the same as running DapInfoClearVirtText
and DapInfoShowVirtText
one after another)