2016-10-29 13:29:02 +08:00
|
|
|
function alias --description 'Creates a function wrapping a command'
|
2020-03-10 02:36:12 +08:00
|
|
|
set -l options h/help s/save
|
2017-07-14 02:41:00 +08:00
|
|
|
argparse -n alias --max-args=2 $options -- $argv
|
|
|
|
or return
|
|
|
|
|
|
|
|
if set -q _flag_help
|
|
|
|
__fish_print_help alias
|
|
|
|
return 0
|
2015-09-23 19:28:32 +08:00
|
|
|
end
|
2006-11-08 04:55:39 +08:00
|
|
|
|
2015-09-23 19:28:32 +08:00
|
|
|
set -l name
|
|
|
|
set -l body
|
|
|
|
set -l prefix
|
|
|
|
set -l first_word
|
2017-02-21 12:23:55 +08:00
|
|
|
set -l wrapped_cmd
|
2006-11-18 00:24:38 +08:00
|
|
|
|
2017-07-14 02:41:00 +08:00
|
|
|
if not set -q argv[1]
|
|
|
|
# Print the known aliases.
|
|
|
|
for func in (functions -n)
|
2017-07-16 08:36:36 +08:00
|
|
|
set -l output (functions $func | string match -r -- "^function .* --description 'alias (.*)'")
|
|
|
|
if set -q output[2]
|
2018-02-28 15:41:12 +08:00
|
|
|
set output (string replace -r -- '^'$func'[= ]' '' $output[2])
|
2017-07-16 08:36:36 +08:00
|
|
|
echo alias $func (string escape -- $output[1])
|
|
|
|
end
|
2017-07-14 02:41:00 +08:00
|
|
|
end
|
|
|
|
return 0
|
|
|
|
else if not set -q argv[2]
|
|
|
|
# Alias definition of the form "name=value".
|
|
|
|
set -l tmp (string split -m 1 "=" -- $argv) ""
|
|
|
|
set name $tmp[1]
|
|
|
|
set body $tmp[2]
|
|
|
|
else
|
|
|
|
# Alias definition of the form "name value".
|
|
|
|
set name $argv[1]
|
|
|
|
set body $argv[2]
|
2015-09-23 19:28:32 +08:00
|
|
|
end
|
2006-11-08 04:55:39 +08:00
|
|
|
|
2015-09-23 19:28:32 +08:00
|
|
|
# sanity check
|
|
|
|
if test -z "$name"
|
|
|
|
printf ( _ "%s: Name cannot be empty\n") alias
|
|
|
|
return 1
|
|
|
|
else if test -z "$body"
|
|
|
|
printf ( _ "%s: Body cannot be empty\n") alias
|
|
|
|
return 1
|
|
|
|
end
|
2006-11-08 04:55:39 +08:00
|
|
|
|
2019-11-30 03:09:02 +08:00
|
|
|
# Extract the first command from the body.
|
|
|
|
printf '%s\n' $body | read -lt first_word body
|
2006-11-08 04:55:39 +08:00
|
|
|
|
2015-09-23 19:28:32 +08:00
|
|
|
# Prevent the alias from immediately running into an infinite recursion if
|
|
|
|
# $body starts with the same command as $name.
|
2019-11-30 03:09:02 +08:00
|
|
|
if test $first_word = $name
|
2015-09-23 19:28:32 +08:00
|
|
|
if contains $name (builtin --names)
|
|
|
|
set prefix builtin
|
|
|
|
else
|
|
|
|
set prefix command
|
2014-08-21 09:19:23 +08:00
|
|
|
end
|
2015-09-23 19:28:32 +08:00
|
|
|
end
|
2018-02-28 15:41:12 +08:00
|
|
|
set -l cmd_string (string escape -- "alias $argv")
|
|
|
|
set wrapped_cmd (string join ' ' -- $first_word $body | string escape)
|
2017-02-21 12:23:55 +08:00
|
|
|
echo "function $name --wraps $wrapped_cmd --description $cmd_string; $prefix $first_word $body \$argv; end" | source
|
2018-04-07 01:27:40 +08:00
|
|
|
if set -q _flag_save
|
|
|
|
funcsave $name
|
|
|
|
end
|
2017-02-21 12:23:55 +08:00
|
|
|
#echo "function $name --wraps $wrapped_cmd --description $cmd_string; $prefix $first_word $body \$argv; end"
|
2006-11-08 04:55:39 +08:00
|
|
|
end
|