Eric Nielsen
Eric Nielsen
@protist, ~~using `setopt COMPLETE_IN_WORD` will give you the behavior you expect~~: ``` $ setopt COMPLETE_IN_WORD $ touch foo-bar foo-baz-bar $ touch bar $ touch foo-bar ^ cursor here $ touch...
@protist, I also think it behaves better now. But having just fuzzy matching is giving me too many matches, as I usually want to match from the beginning of the...
Done. Thanks again for your input, @protist.
@AtomicCoding, I cannot reproduce your last video recording with `touch mafoobarin.py main.pytouch in.py`. What you have there is the desired behavior indeed, but that's not what I'm getting yet. My...
Doing `setopt GLOB_COMPLETE` works, but I consider that a side effect, as `GLOB_COMPLETE` is not what we want to do here.
I might have fixed this. @protist, please check if this works for you (replacing the matcher-list in modules/completion/init.zsh): zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z} l:|=*' '+r:|?=**' What this does is that it...
Thanks for testing this, @protist! I see now that the culprit is the case-insensitive pattern there. If you use zstyle ':completion:*' matcher-list 'l:|=*' '+r:|?=**' all your tests above should pass....
It's easy to get to the following result, which I think would looker nicer than anything else (last line is in vicmd mode, with all separators inverted): ![screen shot 2017-04-01...
This could be done as a separate module, like Prezto did, but on the other hand, setting the module in each theme seems to add as much code as if...
Olá @barraponto. Can you give us more info? There's a long discussion in #6, and that issue was closed as resolved by commit 641ade3. Did you check the whole discussion...