Junegunn Choi
Junegunn Choi
> but it will not help people like me. I disagree. I mentioned above how a user with a different expectation can still benefit from it because matches around `_`...
Well, it's a philosophical difference in software product design so we'll have to agree to disagree, but thanks for sharing your thoughts.
So it's quite similar to `relativenumber` option of Vim. The closest thing fzf can offer is the `jump` (or `jump-accept`) action you can bind to a key or event. ```sh...
> I can automate it by having the voice command automatically enter jump mode after issuing the initial search. One quirk will be if the entry I want isn't already...
> * switching to other methods like running 'ag -w' in shell > Switching to a different source of data (e.g. running ag with '-w') is too long and inconvenient...
> isn't it to expensive It depends. It can be more expensive to load everything in memory and run fuzzy matching algorithm which is likely less efficient than the search...
FWIW, 1. There is an example in ADVANCED.md where you can dynamically switch between fzf mode and ripgrep mode. * https://github.com/junegunn/fzf/blob/master/ADVANCED.md#switching-between-ripgrep-mode-and-fzf-mode-using-a-single-key-binding 1. You can match literal space by escaping it...
> Just in case if someone (as me) still wants feature "Matching with word boundaries", here is my draft version in a fork repository: [maxaykin@38d37d7](https://github.com/maxaykin/fzf/commit/38d37d702a68800aa063ffe180f7c76a73421232) No need to duplicate the...
## Formatter program in compiled languages ### Golang I wrote a Go version of the Ruby code using [Chroma](https://github.com/alecthomas/chroma) library. However, the performance is worse than the Ruby version. ```...
There are two renderer implementations for Windows. 1. FullscreenRenderer. Based on tcell library. We use this in fullscreen mode. 2. LightRenderer. It was added later to support `--height` and used...