Fix comments for cmp window scroll

This commit is contained in:
Rafael Zasas 2024-03-12 18:37:54 +02:00
parent 9583385c28
commit 8da5c06870
No known key found for this signature in database
GPG Key ID: 5B74D9CC57DF08A7
1 changed files with 2 additions and 1 deletions

View File

@ -679,8 +679,9 @@ require('lazy').setup({
-- Select the [p]revious item
['<C-p>'] = cmp.mapping.select_prev_item(),
-- scroll [u]p and [d]own the documentation window
-- scroll documentation window up
['<C-b>'] = cmp.mapping.scroll_docs(-4),
-- scroll documentation window down
['<C-f>'] = cmp.mapping.scroll_docs(4),
-- Accept ([y]es) the completion.