Suggestion for fish 3.0: support aliasing command subcommand to something
Reason: it'll let you do cool things with git (surprise!) like alias 'git log' 'git log --name-status' since there is not yet a git option for log.nameStatus or similar.
It would be very straightforward to simply check if arg == aliased arg and call the alternative command in its place or else shell out to the actual command.
Suggestion for fish 3.0: support aliasing
command subcommandto somethingReason: it'll let you do cool things with git (surprise!) like
alias 'git log' 'git log --name-status'since there is not yet a git option forlog.nameStatusor similar.It would be very straightforward to simply check if
arg == aliased argand call the alternative command in its place or else shell out to the actual command.