Skip to content

Commit

Permalink
chore(build): auto-generate vimdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Oct 29, 2022
1 parent c20f38e commit e853ec4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/noice.nvim.txt
Original file line number Diff line number Diff line change
Expand Up @@ -691,13 +691,13 @@ LSP HOVER DOC SCROLLING ~

>
vim.keymap.set("n", "<c-f>", function()
if not require("noice.source.lsp").scroll(4) then
if not require("noice.lsp").scroll(4) then
return "<c-f>"
end
end, { silent = true, expr = true })
vim.keymap.set("n", "<c-b>", function()
if not require("noice.source.lsp").scroll(-4) then
if not require("noice.lsp").scroll(-4) then
return "<c-b>"
end
end, { silent = true, expr = true })
Expand Down

0 comments on commit e853ec4

Please sign in to comment.