How can I clear all current breakpoints at ones in nvim-dap?
UPD: I wrote this little function to achieve that:
function! ClearBreakpoints()
exec "lua require'dap'.list_breakpoints()"
for item in getqflist()
exec "exe " . item.lnum . "|lua require'dap'.toggle_breakpoint()"
endfor
endfunction