mirror of
https://github.com/httpie/cli.git
synced 2024-11-22 07:43:20 +01:00
Added an alias for HTTPS in fish completions (#1598)
Ensure that fish completion is working with the `https` command. It just wraps the identical completions from `http` to `https`.
This commit is contained in:
parent
3037327410
commit
9eb8699873
@ -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 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 default-scheme -x -d 'The default scheme to use'
|
||||||
complete -c http -l debug -d 'Show debugging output'
|
complete -c http -l debug -d 'Show debugging output'
|
||||||
|
|
||||||
|
|
||||||
|
# Alias for https to http
|
||||||
|
|
||||||
|
function https --wraps http
|
||||||
|
http $argv;
|
||||||
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user