You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If <C-f> is pressed command-line mode it opens the command-line window. However, nvim-cmp's completion window doesn't close which means that it hides the command-line window.
@hrsh7th
The error is being reproduced again
Possible fix:
lua/cmp/init.lua: 354 line
-autocmd.subscribe({ 'InsertLeave', 'CmdlineLeave' }, function()
+autocmd.subscribe({ 'InsertLeave', 'CmdlineLeave', 'CmdwinEnter' }, function()
Describe the bug
If
<C-f>
is pressed command-line mode it opens the command-line window. However, nvim-cmp's completion window doesn't close which means that it hides the command-line window.Minimal config:
To Reproduce
:
to enter command-line modec
<C-f>
Expected behavior
nvim-cmp's completion window closes when command-line window opens
The text was updated successfully, but these errors were encountered: