2016-10-29 05:29:02 +00:00
|
|
|
function alias --description 'Creates a function wrapping a command'
|
2018-04-06 17:27:40 +00:00
|
|
|
set -l options 'h/help' 's/save'
|
2017-07-13 18:41:00 +00: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 11:28:32 +00:00
|
|
|
end
|
2006-11-07 20:55:39 +00:00
|
|
|
|
2015-09-23 11:28:32 +00:00
|
|
|
set -l name
|
|
|
|
set -l body
|
|
|
|
set -l prefix
|
|
|
|
set -l first_word
|
2017-02-21 04:23:55 +00:00
|
|
|
set -l wrapped_cmd
|
2006-11-17 16:24:38 +00:00
|
|
|
|
2017-07-13 18:41:00 +00:00
|
|
|
if not set -q argv[1]
|
|
|
|
# Print the known aliases.
|
|
|
|
for func in (functions -n)
|
2017-07-16 00:36:36 +00:00
|
|
|
set -l output (functions $func | string match -r -- "^function .* --description 'alias (.*)'")
|
|
|
|
if set -q output[2]
|
2018-02-28 07:41:12 +00:00
|
|
|
set output (string replace -r -- '^'$func'[= ]' '' $output[2])
|
2017-07-16 00:36:36 +00:00
|
|
|
echo alias $func (string escape -- $output[1])
|
|
|
|
end
|
2017-07-13 18:41:00 +00: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 11:28:32 +00:00
|
|
|
end
|
2006-11-07 20:55:39 +00:00
|
|
|
|
2015-09-23 11:28:32 +00: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-07 20:55:39 +00:00
|
|
|
|
2017-02-21 04:23:55 +00:00
|
|
|
# Extract the first command from the body. This is supposed to replace all non-escaped (i.e.
|
|
|
|
# preceded by an odd number of `\`) spaces with a newline so it splits on them. See issue #2220
|
|
|
|
# for why the following borderline incomprehensible code exists.
|
2018-02-28 07:41:12 +00:00
|
|
|
set -l tmp (string replace -ra -- "([^\\\ ])((\\\\\\\)*) " '$1\n' $body)
|
|
|
|
set first_word (string trim -- $tmp[1])
|
2017-02-21 04:23:55 +00:00
|
|
|
# If the user does something like `alias x 'foo; bar'` we need to strip the semicolon.
|
2018-02-28 07:41:12 +00:00
|
|
|
set base_command (string trim -c ';' -- $first_word)
|
2015-09-23 11:28:32 +00:00
|
|
|
if set -q tmp[2]
|
|
|
|
set body $tmp[2..-1]
|
|
|
|
else
|
|
|
|
set body
|
|
|
|
end
|
2006-11-07 20:55:39 +00:00
|
|
|
|
2015-09-23 11:28:32 +00:00
|
|
|
# Prevent the alias from immediately running into an infinite recursion if
|
|
|
|
# $body starts with the same command as $name.
|
2018-02-27 22:06:39 +00:00
|
|
|
if test $base_command = $name
|
2015-09-23 11:28:32 +00:00
|
|
|
if contains $name (builtin --names)
|
|
|
|
set prefix builtin
|
|
|
|
else
|
|
|
|
set prefix command
|
2014-08-21 01:19:23 +00:00
|
|
|
end
|
2015-09-23 11:28:32 +00:00
|
|
|
end
|
2018-02-28 07:41:12 +00:00
|
|
|
set -l cmd_string (string escape -- "alias $argv")
|
|
|
|
set wrapped_cmd (string join ' ' -- $first_word $body | string escape)
|
2017-02-21 04:23:55 +00:00
|
|
|
echo "function $name --wraps $wrapped_cmd --description $cmd_string; $prefix $first_word $body \$argv; end" | source
|
2018-04-06 17:27:40 +00:00
|
|
|
if set -q _flag_save
|
|
|
|
funcsave $name
|
|
|
|
end
|
2017-02-21 04:23:55 +00:00
|
|
|
#echo "function $name --wraps $wrapped_cmd --description $cmd_string; $prefix $first_word $body \$argv; end"
|
2006-11-07 20:55:39 +00:00
|
|
|
end
|