-
Notifications
You must be signed in to change notification settings - Fork 163
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
Path source should show when only enabled provider #966
Comments
It seems to work, perhaps you're confusing path completions from your LSP with the path source? Or perhaps you're expecting the path completions to show up in a situation that they currently don't (i.e. |
@Saghen In your case, does it work even without any trigger character specified? If I have the following: test = "./{CURSOR_POSITION}" Then yes it will work because the trigger characters are present before hand. however, the following: test = "{CURSOR_POSITION}" does not work for me. The completion popup will not show. Basically, what I am looking for is to trigger path completion of the current file directory without having to type Perhaps there is a better way to go about this, but I was expecting it to work if summoned without any trigger character (i.e.: it would default to the current dir). |
I get what you mean now, thanks! Note to self: Provide the enabled providers as a list in the context? |
Make sure you have done the following
blink.cmp
<C-k>
on https://cmp.saghen.dev)Bug Description
The following keymap will work with most default sources, but not the path one
I am guessing this might be related to the trigger characters that the
path
provider possesses.However, in that case, since we are doing an explicit manual trigger of the provider, this should work and not be reliant on any trigger character.
Relevant configuration
neovim
versionNVIM v0.11.0-dev-1471+g64b0e6582a
blink.cmp
version0.10.0
The text was updated successfully, but these errors were encountered: