mirror of
https://github.com/oh-my-fish/oh-my-fish
synced 2024-11-09 13:10:40 +00:00
11 lines
295 B
Fish
11 lines
295 B
Fish
function balias --argument alias command
|
|
eval 'alias $alias $command'
|
|
if expr $command : '^sudo '>/dev/null
|
|
set command (echo "$command" | cut -c6-)
|
|
end
|
|
complete -c $alias -xa "(
|
|
set -l cmd (commandline -pc | sed -e 's/^ *\S\+ *//' );
|
|
complete -C\"$command \$cmd\";
|
|
)"
|
|
end
|