From 445872f03a37ed2301d8c0edbfa5f0e66c614a96 Mon Sep 17 00:00:00 2001 From: Renken Date: Sun, 14 Jul 2024 20:42:00 +0200 Subject: [PATCH] fix: enable traditional auto-completion shortcuts --- init.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/init.lua b/init.lua index 617d4ef..e353e58 100644 --- a/init.lua +++ b/init.lua @@ -760,9 +760,9 @@ require('lazy').setup({ -- If you prefer more traditional completion keymaps, -- you can uncomment the following lines - --[''] = cmp.mapping.confirm { select = true }, - --[''] = cmp.mapping.select_next_item(), - --[''] = cmp.mapping.select_prev_item(), + [''] = 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