-
Notifications
You must be signed in to change notification settings - Fork 63
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
Completion for path not starting with dot or slash or tilde #43
Comments
Yes. It's expected for now. I can introduce option but I can't think for that name... |
You mean what the option should be called? Maybe something like " |
@hrsh7th How are current triggers set? Maybe just expose that? Could be called |
How will it make false positive completion? Vim's built in file completion (ControlX ControlF) does not have this issue. I believe this should be the default behaviour. |
It seems that the plugin only matches paths starting with
.
or/
or~
.I'd like to have completion for any relative path, even if it starts with a letter or number.
For example:
./foo/bar.txt
- completion works/foo/bar.txt
- completion works~/foo/bar.txt
- completion worksfoo/bar.txt
- completion does not work!The text was updated successfully, but these errors were encountered: