Tyrrrz / CliFx

Class-first framework for building command-line interfaces
MIT License
1.5k stars 61 forks source link

Multiple characters for short name #69

Closed ADustyOldMuffin closed 4 years ago

ADustyOldMuffin commented 4 years ago

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?

Tyrrrz commented 4 years ago

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.