1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-06 07:20:40 +01:00

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
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'