@@ -333,36 +333,42 @@ M.setup = function(opts)
333
333
end , {
334
334
expr = true ,
335
335
desc = " Plain debug below current line" ,
336
+ unique = true ,
336
337
})
337
338
vim .keymap .set (" n" , " g?P" , function ()
338
339
return M .debugprint ({ above = true })
339
340
end , {
340
341
expr = true ,
341
342
desc = " Plain debug above current line" ,
343
+ unique = true ,
342
344
})
343
345
vim .keymap .set ({ " n" , " x" }, " g?v" , function ()
344
346
return M .debugprint ({ variable = true })
345
347
end , {
346
348
expr = true ,
347
349
desc = " Variable debug below current line" ,
350
+ unique = true ,
348
351
})
349
352
vim .keymap .set ({ " n" , " x" }, " g?V" , function ()
350
353
return M .debugprint ({ above = true , variable = true })
351
354
end , {
352
355
expr = true ,
353
356
desc = " Variable debug above current line" ,
357
+ unique = true ,
354
358
})
355
359
vim .keymap .set (" n" , " g?o" , function ()
356
360
return M .debugprint ({ motion = true })
357
361
end , {
358
362
expr = true ,
359
363
desc = " Text-obj-selected variable debug below current line" ,
364
+ unique = true ,
360
365
})
361
366
vim .keymap .set (" n" , " g?O" , function ()
362
367
return M .debugprint ({ motion = true , above = true })
363
368
end , {
364
369
expr = true ,
365
370
desc = " Text-obj-selected variable debug above current line" ,
371
+ unique = true ,
366
372
})
367
373
end
368
374
0 commit comments