AutoYADM commit: 2024-12-23 03:45:02
This commit is contained in:
parent
49b9dd5c23
commit
2efb780528
1 changed files with 26 additions and 0 deletions
|
@ -6,4 +6,30 @@ return {
|
||||||
lsp_doc_border = true,
|
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" },
|
||||||
|
},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue