diff --git a/extras/httpie-completion.fish b/extras/httpie-completion.fish index 8a711b60..102399a4 100644 --- a/extras/httpie-completion.fish +++ b/extras/httpie-completion.fish @@ -112,3 +112,10 @@ complete -c http -l version -d 'Show version' complete -c http -l traceback -d 'Prints exception traceback should one occur' complete -c http -l default-scheme -x -d 'The default scheme to use' complete -c http -l debug -d 'Show debugging output' + + +# Alias for https to http + +function https --wraps http + http $argv; +end