Add a commented out example of the classic complete keymaps. Fixes #866 (#868)

pull/873/head
Damjan 9000 4 weeks ago committed by GitHub
parent 9f5176fc2a
commit 2e68a2c253
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -720,6 +720,12 @@ require('lazy').setup({
-- This will expand snippets if the LSP sent a snippet.
['<C-y>'] = cmp.mapping.confirm { select = true },
-- If you prefer more traditional completion keymaps,
-- you can uncomment the following lines
--['<CR>'] = cmp.mapping.confirm { select = true },
--['<Tab>'] = cmp.mapping.select_next_item(),
--['<S-Tab>'] = cmp.mapping.select_prev_item(),
-- Manually trigger a completion from nvim-cmp.
-- Generally you don't need this, because nvim-cmp will display
-- completions whenever it has completion options available.

Loading…
Cancel
Save