-
-
Notifications
You must be signed in to change notification settings - Fork 250
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(debugging): add telescope dap extension (#377)
- Loading branch information
Showing
2 changed files
with
70 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# telescope-dap.nvim | ||
|
||
Integration for `nvim-dap` with `telescope.nvim`. | ||
|
||
This plugin is also overriding `dap` internal `ui`, so running any `dap` command, which makes use of the internal ui, will result in a `telescope` prompt. | ||
|
||
**Repository:** <https://github.com/nvim-telescope/telescope-dap.nvim> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
local prefix = "<leader>fd" | ||
|
||
return { | ||
{ | ||
"nvim-telescope/telescope-dap.nvim", | ||
name = "telescope_dap", | ||
event = "User AstroFile", | ||
keys = { | ||
{ | ||
prefix .. "c", | ||
"<Cmd>lua require('telescope').extensions.dap.commands{}<CR>", | ||
{ silent = true, expr = false }, | ||
mode = { | ||
"n", | ||
}, | ||
desc = "Telescope DAP commands", | ||
}, | ||
{ | ||
prefix .. "g", | ||
"<Cmd>lua require('telescope').extensions.dap.configurations{}<CR>", | ||
{ silent = true, expr = false }, | ||
mode = { | ||
"n", | ||
}, | ||
desc = "Telescope DAP configurations", | ||
}, | ||
{ | ||
prefix .. "l", | ||
"<Cmd>lua require('telescope').extensions.dap.list_breakpoints{}<CR>", | ||
{ silent = true, expr = false }, | ||
mode = { | ||
"n", | ||
}, | ||
desc = "Telescope DAP list breakpoints", | ||
}, | ||
{ | ||
prefix .. "v", | ||
"<Cmd>lua require('telescope').extensions.dap.variables{}<CR>", | ||
{ silent = true, expr = false }, | ||
mode = { | ||
"n", | ||
}, | ||
desc = "Telescope DAP variables", | ||
}, | ||
{ | ||
prefix .. "f", | ||
"<Cmd>lua require('telescope').extensions.dap.frames{}<CR>", | ||
{ silent = true, expr = false }, | ||
mode = { | ||
"n", | ||
}, | ||
desc = "Telescope DAP frames", | ||
}, | ||
}, | ||
}, | ||
{ | ||
"nvim-telescope/telescope.nvim", | ||
optional = true, | ||
dependencies = { "telescope_dap" }, | ||
opts = function() require("telescope").load_extension "dap" end, | ||
}, | ||
} |