We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5107d48 commit 2142fa2Copy full SHA for 2142fa2
init.lua
@@ -674,6 +674,10 @@ require('lazy').setup({
674
-- Select the [p]revious item
675
['<C-p>'] = cmp.mapping.select_prev_item(),
676
677
+ -- scroll the documentation window [b]ack / [f]orward
678
+ ['<C-b>'] = cmp.mapping.scroll_docs(-4),
679
+ ['<C-f>'] = cmp.mapping.scroll_docs(4),
680
+
681
-- Accept ([y]es) the completion.
682
-- This will auto-import if your LSP supports it.
683
-- This will expand snippets if the LSP sent a snippet.
0 commit comments