1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
|
local function get_args(config)
local args = type(config.args) == "function" and (config.args() or {}) or config.args or {}
config = vim.deepcopy(config)
---@cast args string[]
config.args = function()
local new_args = vim.fn.input("Run with args: ", table.concat(args, " ")) --[[@as string]]
return vim.split(vim.fn.expand(new_args) --[[@as string]], " ")
end
return config
end
return {
{
"mfussenegger/nvim-dap",
recommended = true,
desc = "Debugging support. Requires language specific adapters to be configured. (see lang extras)",
dependencies = {
"rcarriga/nvim-dap-ui",
-- virtual text for the debugger
{
"theHamsta/nvim-dap-virtual-text",
opts = {},
},
},
init = function()
local wk = require("which-key")
wk.add({
mode = { "n" },
{ "<localleader>dp", group = "Debug" },
{ "<localleader>dP", group = "Debug (Python)" },
})
end,
config = function()
-- load mason-nvim-dap here, after all adapters have been setup
vim.api.nvim_set_hl(0, "DapStoppedLine", { default = true, link = "Visual" })
local dap = require("dap")
dap.configurations.java = {
{
type = "java",
request = "attach",
name = "Debug (Attach) - Remote",
hostName = "127.0.0.1",
port = 5005,
},
}
local dap_icons = {
Stopped = { " ", "DiagnosticWarn", "DapStoppedLine" },
Breakpoint = " ",
BreakpointCondition = " ",
BreakpointRejected = { " ", "DiagnosticError" },
LogPoint = ".>",
}
for name, sign in pairs(dap_icons) do
sign = type(sign) == "table" and sign or { sign }
vim.fn.sign_define(
"Dap" .. name,
{ text = sign[1], texthl = sign[2] or "DiagnosticInfo", linehl = sign[3], numhl = sign[3] }
)
end
-- setup dap config by VsCode launch.json file
local vscode = require("dap.ext.vscode")
local json = require("plenary.json")
vscode.json_decode = function(str)
return vim.json.decode(json.json_strip_comments(str))
end
end,
keys = {
{
"<localleader>dpB",
function()
require("dap").set_breakpoint(vim.fn.input("Breakpoint condition: "))
end,
desc = "Dap breakpoint condition",
},
{
"<localleader>dpb",
function()
require("dap").toggle_breakpoint()
end,
desc = "Dap toggle breakpoint",
},
{
"<localleader>dpc",
function()
require("dap").continue()
end,
desc = "Dap continue",
},
{
"<localleader>dpa",
function()
require("dap").continue({ before = get_args })
end,
desc = "Dap run with args",
},
{
"<localleader>dpC",
function()
require("dap").run_to_cursor()
end,
desc = "Dap run to cursor",
},
{
"<localleader>dpg",
function()
require("dap").goto_()
end,
desc = "Dap go to line (no execute)",
},
{
"<localleader>dpi",
function()
require("dap").step_into()
end,
desc = "Dap step into",
},
{
"<localleader>dpj",
function()
require("dap").down()
end,
desc = "Dap down",
},
{
"<localleader>dpk",
function()
require("dap").up()
end,
desc = "Dap up",
},
{
"<localleader>dpl",
function()
require("dap").run_last()
end,
desc = "Dap run last",
},
{
"<localleader>dpo",
function()
require("dap").step_out()
end,
desc = "Dap step out",
},
{
"<localleader>dpO",
function()
require("dap").step_over()
end,
desc = "Dap step over",
},
{
"<localleader>dpp",
function()
require("dap").pause()
end,
desc = "Dap pause",
},
{
"<localleader>dpr",
function()
require("dap").repl.toggle()
end,
desc = "Dap toggle repl",
},
{
"<localleader>dps",
function()
require("dap").session()
end,
desc = "Dap session",
},
{
"<localleader>dpt",
function()
require("dap").terminate()
end,
desc = "Dap terminate",
},
{
"<localleader>dpw",
function()
require("dap.ui.widgets").hover()
end,
desc = "Dap widgets",
},
{
"<localleader>dpR",
"<cmd>lua require('dapui').open({ reset = true })<cr>",
desc = "Dap UI reset",
},
},
},
{
"mfussenegger/nvim-dap-python",
ft = "python",
dependencies = { "mfussenegger/nvim-dap", "rcarriga/nvim-dap-ui" },
config = function()
local path = "~/.local/share/nvim/mason/packages/debugpy/venv/bin/python"
require("dap-python").setup(path)
end,
keys = {
{
"<localleader>dPt",
function()
require("dap-python").test_method()
end,
desc = "Dap debug method",
ft = "python",
},
{
"<localleader>dPc",
function()
require("dap-python").test_class()
end,
desc = "Dap debug class",
ft = "python",
},
},
},
{
"rcarriga/nvim-dap-ui",
dependencies = { "mfussenegger/nvim-dap", "nvim-neotest/nvim-nio" },
config = function()
local dap = require("dap")
local dapui = require("dapui")
dapui.setup({
icons = { expanded = "▾", collapsed = "▸", current_frame = "*" },
controls = {
icons = {
pause = "⏸",
play = "▶",
step_into = "⏎",
step_over = "⏭",
step_out = "⏮",
step_back = "b",
run_last = "▶▶",
terminate = "⏹",
disconnect = "⏏",
},
},
})
dap.listeners.before.attach.dapui_config = function()
dapui.open()
end
dap.listeners.before.launch.dapui_config = function()
dapui.open()
end
dap.listeners.before.event_terminated.dapui_config = function()
dapui.close()
end
dap.listeners.before.event_exited.dapui_config = function()
dapui.close()
end
dap.listeners.after.event_initialized["dapui_config"] = function()
dapui.open()
end
dap.listeners.after.event_terminated["dapui_config"] = function()
dapui.close()
end
dap.listeners.after.event_exited["dapui_config"] = function()
dapui.close()
end
end,
keys = {
{
"<localleader>dpu",
function()
require("dapui").toggle()
end,
desc = "Dap UI",
},
{
"<localleader>dpe",
function()
require("dapui").eval()
end,
desc = "Dap eval",
},
},
},
{
"jay-babu/mason-nvim-dap.nvim",
dependencies = "mason.nvim",
cmd = { "DapInstall", "DapUninstall" },
opts = {
-- Makes a best effort to setup the various debuggers with
-- reasonable debug configurations
automatic_installation = true,
-- You can provide additional configuration to the handlers,
-- see mason-nvim-dap README for more information
handlers = {},
-- You'll need to check that you have the required things installed
-- online, please don't ask me how to install them :)
ensure_installed = {
-- Update this to ensure that you have the debuggers for the langs you want
},
},
-- mason-nvim-dap is loaded when nvim-dap loads
config = function() end,
},
}
|