diff options
author | Christian Chiarulli <[email protected]> | 2022-11-10 09:06:55 -0500 |
---|---|---|
committer | Christian Chiarulli <[email protected]> | 2022-11-10 09:06:55 -0500 |
commit | 73d225fffb684379ada36cc34479edbc697bea36 (patch) | |
tree | 218093a737a99c33ee93e2a879387518c934b048 /lua/lvim/core | |
parent | 5e051afbb1dbab7825588996cfff912326419a5a (diff) |
fix: cmp will behave closer to how people expect
Diffstat (limited to 'lua/lvim/core')
-rw-r--r-- | lua/lvim/core/cmp.lua | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lua/lvim/core/cmp.lua b/lua/lvim/core/cmp.lua index 58d427cb..f353bbe9 100644 --- a/lua/lvim/core/cmp.lua +++ b/lua/lvim/core/cmp.lua @@ -331,15 +331,11 @@ M.config = function() return -- success, exit early end end - - if jumpable(1) and luasnip.jump(1) then - return -- success, exit early - end fallback() -- if not exited early, always fallback end), }, cmdline = { - enable = true, + enable = false, options = { { type = ":", |