httpie: add alias for https (#8032)

This commit is contained in:
Alexander Schaber 2020-07-14 16:50:18 +02:00 committed by GitHub
parent 5c1a5c6ce9
commit 93e9b80d3f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 0 deletions

View File

@ -11,4 +11,10 @@ plugins=(... httpie)
It uses completion from [zsh-completions](https://github.com/zsh-users/zsh-completions).
## Aliases
| Alias | Command |
| ------------ | ---------------------------------------------------------------- |
| `https` | `http --default-scheme=https` |
**Maintainer:** [lululau](https://github.com/lululau)

View File

@ -0,0 +1,7 @@
#
# Aliases
# (sorted alphabetically)
#
alias https='http --default-scheme=https'