sorin-ionescu / prezto

The configuration framework for Zsh
MIT License
14.02k stars 4.49k forks source link

Adjust case-insensitive completion to use [:upper:] and [:lower:] #2078

Closed CT075 closed 8 months ago

CT075 commented 8 months ago

This fixes #2053.

Previously, in cases where exactly two completion arguments were present, one would match {a-zA-Z} and the other would match {A-Za-z}, thus causing a first-character "match". The docs recommend using [:lower:] and [:upper:] over a-z as well.

indrajitr commented 8 months ago

Thanks @CT075!