1
0
mirror of https://github.com/httpie/cli.git synced 2025-03-03 14:42:24 +02: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:
ash 2024-12-17 17:30:35 +00:00 committed by GitHub
parent 2843b874c6
commit 5b604c37c6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -116,6 +116,4 @@ complete -c http -l debug -d 'Show debugging output'
# Alias for https to http
function https --wraps http
http $argv;
end
complete -c https -w http