mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-09 04:26:30 +08:00
![Kurtis Rader](/assets/img/avatar_default.png)
A recent regression to the `alias` command points out the need for more unit tests of its behavior. I also decided to use it as an opportunity to normalize the output of just `alias` to list aliases.
6 lines
158 B
Plaintext
6 lines
158 B
Plaintext
ran foo
|
|
foo ran
|
|
# bare `alias` should list the aliases we have created and nothing else
|
|
alias a-2 'echo "hello there"'
|
|
alias my_alias 'foo; and echo foo ran'
|