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 Jan 29, 2023
1 parent 40174a3 commit 34f7cf6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/noice.nvim.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*noice.nvim.txt* For Neovim >= 0.8.0 Last change: 2023 January 25
*noice.nvim.txt* For Neovim >= 0.8.0 Last change: 2023 January 29

==============================================================================
Table of Contents *noice.nvim-table-of-contents*
Expand Down Expand Up @@ -774,13 +774,13 @@ it again. When exiting the cmdline, the popup window will be focused.
LSP HOVER DOC SCROLLING ~

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

vim.keymap.set("n", "<c-b>", function()
vim.keymap.set({"n", "i", "s"}, "<c-b>", function()
if not require("noice.lsp").scroll(-4) then
return "<c-b>"
end
Expand Down

0 comments on commit 34f7cf6

Please sign in to comment.