Change cmp scroll_docs comment to [b]ack and [f]orward

This commit is contained in:
Rafael Zasas 2024-03-13 08:40:58 +02:00
parent 8da5c06870
commit 9d551d14ff
No known key found for this signature in database
GPG Key ID: 5B74D9CC57DF08A7
1 changed files with 1 additions and 2 deletions

View File

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