We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 576ea4f commit 48aa9d3Copy full SHA for 48aa9d3
init.lua
@@ -677,6 +677,10 @@ require('lazy').setup({
677
-- Select the [p]revious item
678
['<C-p>'] = cmp.mapping.select_prev_item(),
679
680
+ -- scroll the documentation window [b]ack / [f]orward
681
+ ['<C-b>'] = cmp.mapping.scroll_docs(-4),
682
+ ['<C-f>'] = cmp.mapping.scroll_docs(4),
683
+
684
-- Accept ([y]es) the completion.
685
-- This will auto-import if your LSP supports it.
686
-- This will expand snippets if the LSP sent a snippet.
0 commit comments