From f11252f073d436fcff97d551af25b2cf1757b106 Mon Sep 17 00:00:00 2001 From: Devin Lumley <2636402+devinwl@users.noreply.github.com> Date: Thu, 4 Jan 2024 20:00:56 -0800 Subject: [PATCH] fix: update completion behaviour --- lua/plugins/completion.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lua/plugins/completion.lua b/lua/plugins/completion.lua index e3f01ac..18d888f 100644 --- a/lua/plugins/completion.lua +++ b/lua/plugins/completion.lua @@ -29,7 +29,10 @@ return { fallback() end end, { "i" }), - [""] = cmp.mapping.confirm({ select = true }) + [""] = cmp.mapping.confirm({ + behaviour = cmp.ConfirmBehavior.Insert, + select = true + }) }), snippet = {