Closed CT075 closed 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.
{a-zA-Z}
{A-Za-z}
[:lower:]
[:upper:]
a-z
Thanks @CT075!
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:]
overa-z
as well.