mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-24 13:03:13 +08:00
8 lines
178 B
Fish
8 lines
178 B
Fish
|
# Avoid regressions of issue #3860 wherein the first word of the alias ends
|
||
|
# with a semicolon.
|
||
|
function foo
|
||
|
echo ran foo
|
||
|
end
|
||
|
alias my_alias "foo; and echo foo ran"
|
||
|
my_alias
|