httpie: add alias for https (#8032)

master
Alexander Schaber 6 years ago committed by GitHub
parent 5c1a5c6ce9
commit 93e9b80d3f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      plugins/httpie/README.md
  2. 7
      plugins/httpie/httpie.plugin.zsh

@ -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)

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