AutoYADM commit: 2024-12-23 03:45:02

This commit is contained in:
Daniel Fichtinger 2024-12-23 03:45:02 -05:00
parent 49b9dd5c23
commit 2efb780528

View file

@ -6,4 +6,30 @@ return {
lsp_doc_border = true,
},
},
keys = {
{
"<c-h>",
function()
if not require("noice.lsp").scroll(4) then
return "<c-f>"
end
end,
silent = true,
expr = true,
desc = "Scroll Forward",
mode = { "i", "n", "s" },
},
{
"<c-l>",
function()
if not require("noice.lsp").scroll(-4) then
return "<c-b>"
end
end,
silent = true,
expr = true,
desc = "Scroll Backward",
mode = { "i", "n", "s" },
},
},
}