From 96af1794513393343eb424ae7d85f390de73b5b6 Mon Sep 17 00:00:00 2001 From: lowell Date: Fri, 7 Feb 2025 10:21:48 -0500 Subject: [PATCH] changing autocompletion back. I think I prefer CR over tab --- lua/plugins/autocompletion.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lua/plugins/autocompletion.lua b/lua/plugins/autocompletion.lua index c113a26..79acac5 100644 --- a/lua/plugins/autocompletion.lua +++ b/lua/plugins/autocompletion.lua @@ -96,10 +96,10 @@ return { -- Autocompletion -- If you prefer more traditional completion keymaps, -- you can uncomment the following lines - -- [''] = cmp.mapping.confirm { select = true }, - [''] = cmp.mapping.confirm { select = true }, - --[''] = cmp.mapping.select_next_item(), - --[''] = cmp.mapping.select_prev_item(), + [''] = cmp.mapping.confirm { select = true }, + -- [''] = cmp.mapping.confirm { select = true }, + [''] = cmp.mapping.select_next_item(), + [''] = cmp.mapping.select_prev_item(), -- Manually trigger a completion from nvim-cmp. -- Generally you don't need this, because nvim-cmp will display