Junegunn Choi
Junegunn Choi
Admittedly, `--filter '' < /dev/tty` isn't pretty. Maybe we should provide a shortcut option for this. ```sh # Start the built-in walker and print the list fzf --walk ``` Or...
I think we can do this with Lua scripting as shown below though it doubles the number of keys. ``` lua local ts = redis.call('get', KEYS[2]) or -1 if tonumber(ARGV[2])...
@charsyam Good point. But what if we just pack them into a single list? Then we don't have to worry about separate eviction of those two. ``` lua local ts...
Ok. I think the question here is: "Is it worth it?" Is it worth it to integrate this feature into the core, when what it tries to achieve is already...
> Could you please describe this in more detail? I was worried about match type being changed multiple times against the user's will. * `it` - exact match * `it'`...
> Though, if implemented it may become a precedent for other requests for regexp-like modifiers. Right. I don't want that. > Regarding your implementation of word boundary check (based on...
After experimenting with this for a while, one thing I can agree is that `..._foo_...` should be ranked lower than `...-foo-...`, `...[foo]...`, `...(foo)...`, `... $foo ...`, etc. We can still...
Have you tried getting used to the `change:reload` approach? The more I hear from you, the more I feel it's the solution you're looking for; only getting the exact matches...
> Yes but typing a regexp every time is inconvenient. You can find examples in https://github.com/junegunn/fzf/blob/master/ADVANCED.md where you can toggle between two modes. > And inventing various wrappers/workarounds for different...
> but all results should be relevant matches We seem to have a very different understanding of this program, or maybe we're using the term "relevant" differently. Fuzzy matching algorithm...