diff options
| author | Christian Chiarulli <[email protected]> | 2022-11-10 09:13:33 -0500 | 
|---|---|---|
| committer | GitHub <[email protected]> | 2022-11-10 09:13:33 -0500 | 
| commit | 02e8ad7f72a00e2f0cbc0554f48f0062c5a20a00 (patch) | |
| tree | d8f65ff630c885c495e326f36a11c9b18cfe5349 /lua/lvim/core | |
| parent | c00c667a4149013f46563e50e49cb4b3117c7aa7 (diff) | |
fix: cmp behaves closer to how most people expect
Diffstat (limited to 'lua/lvim/core')
| -rw-r--r-- | lua/lvim/core/cmp.lua | 5 | 
1 files changed, 1 insertions, 4 deletions
| diff --git a/lua/lvim/core/cmp.lua b/lua/lvim/core/cmp.lua index 58d427cb..6b8a5583 100644 --- a/lua/lvim/core/cmp.lua +++ b/lua/lvim/core/cmp.lua @@ -332,14 +332,11 @@ M.config = function()            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 = ":", | 
