Junegunn Choi
Junegunn Choi
That explains. In bash, fuzzy completion only works for a predefined set of commands and commands with no completion defined. Because firefox has its own completion in your environment, fuzzy...
If your requirement is simple (e.g. selecting the first entry), you can bind actions to perform on `load` event. ```sh fzf --multi --bind 'load:pos(1)+select' --bind 'space:reload(ls)+clear-query' ``` To avoid triggering...
Everything is synchronous (blocking), except for `reload`, because loading of the input list is inherently asynchronous. This is also true for `reload-sync`. The "sync" part means that it replaces the...
The reason we have `--marker-multi-line` is to make it possible to visually separate consecutive selected entries. The pointer doesn't have this problem, so I didn't add the option. It wouldn't...
That's strange. Do you have the latest version of the file? We do have a guard here: https://github.com/junegunn/fzf-git.sh/blob/6df84d71fe8b532b6e1d7c4a754ea6c7c032f553/fzf-git.sh#L147-L148 Any idea why you're running into the problem?
@hahnandrew That would make your shell unnecessarily reload the file over and over again. I can't be 100% sure because I don't have the problem, but I believe 28b544a7b6d284b8e46e227b36000089b45e9e00 should...
Does it work in non-fullscreen mode? e.g. `--height=-1`
It's a long story. We currently have two different renderer implementations for Windows, one is based on [tcell library](https://github.com/gdamore/tcell) which is used when opening fzf in full-screen mode. The other...
Unfortunately, bash and zsh use different notations for key chords. In this case, `\C-g` vs. `^g`. This makes it impossible to provide a simple, consistent option variable we can use...
Do you prefer the "After:" output with mime types? I didn't pay much attention to this because I was fine with the error message from bat, or maybe I even...