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 8d73f7d commit ed32b88Copy full SHA for ed32b88
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