You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 16, 2023. It is now read-only.
Currently aliases are supplied when configuring commands:
command(name) { alias(aliasOne, aliasTwo, aliasThree) invoke { //.... } }
It would be rather simple and more concise to also allow these to be supplied after the name:
command(name, aliasOne, aliasTwo, aliasThree) { invoke { //.... } }
I don't think we'll ever use the arguments after a command's name for anything else, so there's not much risk capitalising the space like this.
The text was updated successfully, but these errors were encountered: