File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -831,9 +831,9 @@ require('lazy').setup({
831831 -- No, but seriously. Please read `:help ins-completion`, it is really good!
832832 mapping = cmp .mapping .preset .insert {
833833 -- Select the [n]ext item
834- [' <C-n>' ] = cmp .mapping .select_next_item (),
834+ -- ['<C-n>'] = cmp.mapping.select_next_item(),
835835 -- Select the [p]revious item
836- [' <C-p>' ] = cmp .mapping .select_prev_item (),
836+ -- ['<C-p>'] = cmp.mapping.select_prev_item(),
837837
838838 -- Scroll the documentation window [b]ack / [f]orward
839839 [' <C-b>' ] = cmp .mapping .scroll_docs (- 4 ),
@@ -846,7 +846,7 @@ require('lazy').setup({
846846
847847 -- If you prefer more traditional completion keymaps,
848848 -- you can uncomment the following lines
849- -- ['<CR >'] = cmp.mapping.confirm { select = true },
849+ [' <Tab >' ] = cmp .mapping .confirm { select = true },
850850 -- ['<Tab>'] = cmp.mapping.select_next_item(),
851851 -- ['<S-Tab>'] = cmp.mapping.select_prev_item(),
852852
You can’t perform that action at this time.
0 commit comments