-
Notifications
You must be signed in to change notification settings - Fork 151
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cmdline completion does not provide arg lead input to custom command completion #696
Comments
This was done intentionally to prevent the |
I have a custom The bigger issue for me is autocompletion on function! DoAutocomplete(A,L,P) abort
return ['one', 'two', 'three']
endfunction
call input('test: ', '', 'customlist,DoAutocomplete') With |
Thanks for the fix. This fixes the issue with input, but it breaks the regular completion for commands. For example, if you use telescope, try doing
That's because |
Fixed on main, thanks! |
I'm still getting the following error on version 0.9.0 when I type commands such as
|
Make sure you have done the following
blink.cmp
Bug Description
New cmdline completion does not provide "arg_lead" to the custom command completion. Steps to reproduce:
nvim -u mininit.lua
:Find something
:messages
, you will see onlyARG LEAD
Expected:
To see
ARG LEAD something
in:messages
.Relevant configuration
neovim version
0.10.2
blink.cmp
version: branch, tag, or commit0.8.0
The text was updated successfully, but these errors were encountered: