We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b9f2d2 commit f87ba20Copy full SHA for f87ba20
init.lua
@@ -698,6 +698,10 @@ require('lazy').setup({
698
-- Select the [p]revious item
699
['<C-p>'] = cmp.mapping.select_prev_item(),
700
701
+ -- scroll the documentation window [b]ack / [f]orward
702
+ ['<C-b>'] = cmp.mapping.scroll_docs(-4),
703
+ ['<C-f>'] = cmp.mapping.scroll_docs(4),
704
+
705
-- Accept ([y]es) the completion.
706
-- This will auto-import if your LSP supports it.
707
-- This will expand snippets if the LSP sent a snippet.
0 commit comments