diff --git a/nvim/lua/lsp_config.lua b/nvim/lua/lsp_config.lua index 1bfa56f..2b8ba85 100644 --- a/nvim/lua/lsp_config.lua +++ b/nvim/lua/lsp_config.lua @@ -47,7 +47,7 @@ cmp.setup({ documentation = cmp.config.window.bordered(), }, mapping = cmp.mapping.preset.insert({ - [''] = cmp.mapping.confirm({ select = true }), -- Accept currently selected item. Set `select` to `false` to only confirm explicitly selected items. + [''] = cmp.mapping.confirm({ select = false }), -- Accept currently selected item. Set `select` to `false` to only confirm explicitly selected items. [""] = cmp.mapping(select_next, { "i", "s" }), [""] = cmp.mapping(select_next, { "i", "s" }), [""] = cmp.mapping(select_previous, { "i", "s" }),