-
Notifications
You must be signed in to change notification settings - Fork 160
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
[BUG] Run fzf-lua with skim failed #1085
Comments
My bad, I didn’t test it with skim. I do recall it does support the flag so I’m confused why this doesn’t work, I’ll fix it. |
Actually this is a |
Nice, let me know when you fixed it and what went wrong? In any event, I’ll make sure this works with a workaround as I can’t have this broken for everyone else but you. |
I fixed this "with space" problem and upgraded to |
Looking at the code, I found that the author actually handles negative numbers, but the |
Looking at the code, I found that the author actually handles negative numbers, but the `-` sign will be specially processed by clap (Command Line Argument Parser for Rust). Fortunately clap provides a flag to control this behavior: https://docs.rs/clap/latest/clap/struct.Arg.html#method.allow_hyphen_values. Very nice! I recently also used clap but had no idea about this behavior. Btw, have you see this fork from skim-rs/skim#561 claiming to have better performance than fzf? If this is true I would’ve loved for this to be PR’d and merged. |
Looking at the code, I found that the author actually handles negative numbers, but the `-` sign will be specially processed by clap (Command Line Argument Parser for Rust). Fortunately clap provides a flag to control this behavior: https://docs.rs/clap/latest/clap/struct.Arg.html#method.allow_hyphen_values. I don't know much about optimizing performance, but I think these optimizations are effective. |
Info
nvim --version
: NVIM v0.10.0-dev-2442+gfe74716cbskim --version
: sk 0.10.4mini.sh
fzf-lua configuration
Description
The problems introduced by this commit feat: exclude icons from fuzzy matching. This
--nth
argument is not work forskim
.The text was updated successfully, but these errors were encountered: