Vlastimil Ovčáčík
Vlastimil Ovčáčík
That clarifies why it works for you. The default font for cmd is Consolas and that font does not include Braille characters, so I would disable them in fzf for...
Somewhat related to #1622
Also useful to invert selection and only deselect some items manually.
Possible workaround: `execute(start /i cmd /c fzf)`.
Ctrl+_ https://github.com/junegunn/fzf/blob/5fc78e4584eface9f2055ee7c31c2ae8c5cedc87/src/tui/tcell_test.go#L99 Ctrl+Backspace https://github.com/junegunn/fzf/blob/5fc78e4584eface9f2055ee7c31c2ae8c5cedc87/src/tui/tcell_test.go#L115 (just a memo)
For query `a`, its a tie for both lines. The default [tiebreak][] is based on _length_ criterion. What you do: `printf '%s\n' 'a looooooooong' 'aaa short' | fzf -n1 --tiebreak=length`...
Hide preview window, when preview is empty string?
Fixes #1930
Elegant solution would be: `git log --oneline | fzf.exe --preview "git log --oneline" --preview-window "+{n}-1/2"` but the following also works: `git log --oneline | nl | fzf.exe --preview "git log...
I have also run into this: ``` echo foobar > test.txt rg --no-heading foobar | fzf --delimiter ":" --with-nth 1 ``` Fzf then displays `test.txt:` and query of `txt$` won't...