update
This commit is contained in:
parent
0dee46da50
commit
855db2feee
3 changed files with 33 additions and 28 deletions
|
@ -32,6 +32,10 @@ local on_attach = function(args)
|
|||
{ "<leader>dso", function() require("dap").step_over() end, "Debug: Step over" },
|
||||
{ "<leader>dsi", function() require("dap").step_into() end, "Debug: Step into" },
|
||||
{ "<leader>dl", function() require("dap").run_last() end, "Debug: Run last" },
|
||||
{ "<F5>", function() require("dap").continue() end, "Debug: Continue" },
|
||||
{ "<M-h>", function() require("dap.ui.widgets").hover() end, "Debug: Hover" },
|
||||
{ "<F7>", function() require("dap").step_over() end, "Debug: Step over" },
|
||||
{ "<F8>", function() require("dap").step_into() end, "Debug: Step into" },
|
||||
{ "<leader>aa", vim.diagnostic.setqflist, "Add all diagnostics to quickfix list" },
|
||||
{ "<leader>aw", function() vim.diagnostic.setqflist({ severity = "W" }) end, "Add all warnings to quickfix list" },
|
||||
{ "<leader>ae", function() vim.diagnostic.setqflist({ severity = "E" }) end, "Add all errors to quickfix list" },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue