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