From bd7c5dc6c4e5e83186983231f34642157d1a3ccc Mon Sep 17 00:00:00 2001 From: Ray Andrew <4437323+rayandrew@users.noreply.github.com> Date: Sun, 30 Jul 2023 19:06:22 -0500 Subject: [PATCH] fix tab and s-tab --- lua/rayandrew/plugins.lua | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lua/rayandrew/plugins.lua b/lua/rayandrew/plugins.lua index 08ebd82..f12c03d 100644 --- a/lua/rayandrew/plugins.lua +++ b/lua/rayandrew/plugins.lua @@ -689,8 +689,10 @@ return { [""] = cmp.mapping.select_prev_item(cmp_select), [""] = cmp.mapping.select_next_item(cmp_select), [""] = cmp.mapping.confirm({ select = true }), - [""] = cmp_action.luasnip_supertab(), - [""] = cmp_action.luasnip_supertab(), + [""] = nil, + [""] = nil, + -- [""] = cmp_action.luasnip_supertab(), + -- [""] = cmp_action.luasnip_supertab(), [""] = cmp.mapping.confirm({ -- documentation says this is important. -- I don't know why.