mirror of
https://github.com/httpie/cli.git
synced 2025-03-10 04:08:14 +01:00
Fix https
behaviour in fish (#1611)
Using the name `https` to invoke HTTPie should make HTTPie default to the https:// scheme, but using a fish function to replace invocations of `https` with invocations of `http` defeats this behaviour. Instead, just tell fish to complete `https` in the same way as `http`.
This commit is contained in:
parent
2843b874c6
commit
5b604c37c6
@ -116,6 +116,4 @@ complete -c http -l debug -d 'Show debugging output'
|
|||||||
|
|
||||||
# Alias for https to http
|
# Alias for https to http
|
||||||
|
|
||||||
function https --wraps http
|
complete -c https -w http
|
||||||
http $argv;
|
|
||||||
end
|
|
||||||
|
Loading…
Reference in New Issue
Block a user