mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
Merge branch 'master' into maxfl_completions
This commit is contained in:
commit
72c1bfc7bf
1 changed files with 3 additions and 0 deletions
|
@ -13,6 +13,9 @@ function alias --description "Legacy function for creating shellscript functions
|
||||||
set -l body
|
set -l body
|
||||||
switch (count $argv)
|
switch (count $argv)
|
||||||
|
|
||||||
|
case 0
|
||||||
|
echo "Fish implements aliases using functions. Use 'functions' builtin to see list of functions and 'functions function_name' to see function definition, type 'help alias' for more information."
|
||||||
|
return 1
|
||||||
case 1
|
case 1
|
||||||
set -l tmp (echo $argv|sed -e "s/\([^=]\)=/\1\n/")
|
set -l tmp (echo $argv|sed -e "s/\([^=]\)=/\1\n/")
|
||||||
set name $tmp[1]
|
set name $tmp[1]
|
||||||
|
|
Loading…
Reference in a new issue