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