Tyrrrz/CliFx

Multiple characters for short name

ADustyOldMuffin opened this issue · 1 comments

From using other CLI tools it's common to have multiple character short names to avoid clashing of commands I.E. --save, -s --saveFile, -sf

Is it possible that support for this could be added?

No, because multiple single characters are treated separately, so -sf is evaluated as -s -f. This comes as a result of CliFx's context-agnostic design philosophy.