@@ -311,41 +311,49 @@ M.setup = function(opts)
311
311
return M .debugprint ()
312
312
end , {
313
313
expr = true ,
314
+ desc = " Plain debug below current line" ,
314
315
})
315
316
vim .keymap .set (" n" , " g?P" , function ()
316
317
return M .debugprint ({ above = true })
317
318
end , {
318
319
expr = true ,
320
+ desc = " Plain debug above current line" ,
319
321
})
320
322
vim .keymap .set (" n" , " g?v" , function ()
321
323
return M .debugprint ({ variable = true })
322
324
end , {
323
325
expr = true ,
326
+ desc = " Variable debug below current line" ,
324
327
})
325
328
vim .keymap .set (" n" , " g?V" , function ()
326
329
return M .debugprint ({ above = true , variable = true })
327
330
end , {
328
331
expr = true ,
332
+ desc = " Variable debug above current line" ,
329
333
})
330
334
vim .keymap .set (" x" , " g?v" , function ()
331
335
return M .debugprint ({ variable = true })
332
336
end , {
333
337
expr = true ,
338
+ desc = " Visually-selected variable debug below current line" ,
334
339
})
335
340
vim .keymap .set (" x" , " g?V" , function ()
336
341
return M .debugprint ({ above = true , variable = true })
337
342
end , {
338
343
expr = true ,
344
+ desc = " Visually-selected variable debug above current line" ,
339
345
})
340
346
vim .keymap .set (" n" , " g?o" , function ()
341
347
return M .debugprint ({ motion = true })
342
348
end , {
343
349
expr = true ,
350
+ desc = " Text-obj-selected variable debug below current line" ,
344
351
})
345
352
vim .keymap .set (" n" , " g?O" , function ()
346
353
return M .debugprint ({ motion = true , above = true })
347
354
end , {
348
355
expr = true ,
356
+ desc = " Text-obj-selected variable debug above current line" ,
349
357
})
350
358
end
351
359
0 commit comments