From 90b4b55bf439385c287adbed8f7210d2e8d098be Mon Sep 17 00:00:00 2001 From: Christian Chiarulli Date: Sun, 25 Sep 2022 16:53:23 -0400 Subject: fix: supertab should tab if menu is not available (#3079) --- lua/lvim/core/cmp.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lua/lvim/core/cmp.lua') diff --git a/lua/lvim/core/cmp.lua b/lua/lvim/core/cmp.lua index 8e954335..a6362aa7 100644 --- a/lua/lvim/core/cmp.lua +++ b/lua/lvim/core/cmp.lua @@ -247,7 +247,8 @@ M.config = function() elseif jumpable(1) then luasnip.jump(1) elseif has_words_before() then - cmp.complete() + -- cmp.complete() + fallback() else fallback() end -- cgit v1.2.3