diff options
author | Alexander Schaber <a.schaber@cuegee.com> | 2020-07-14 16:50:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-14 16:50:18 +0200 |
commit | 93e9b80d3ff160c7d7f5be4c2c1862da97b273dc (patch) | |
tree | 0f148d56f7c0f75035b790b57a033196e5460f34 /plugins/httpie | |
parent | 5c1a5c6ce924755095020fd829b08f0ee205a723 (diff) | |
download | zsh-93e9b80d3ff160c7d7f5be4c2c1862da97b273dc.tar.gz zsh-93e9b80d3ff160c7d7f5be4c2c1862da97b273dc.tar.bz2 zsh-93e9b80d3ff160c7d7f5be4c2c1862da97b273dc.zip |
httpie: add alias for https (#8032)
Diffstat (limited to 'plugins/httpie')
-rw-r--r-- | plugins/httpie/README.md | 6 | ||||
-rw-r--r-- | plugins/httpie/httpie.plugin.zsh | 7 |
2 files changed, 13 insertions, 0 deletions
diff --git a/plugins/httpie/README.md b/plugins/httpie/README.md index 25bdd0c7d..40d60c47d 100644 --- a/plugins/httpie/README.md +++ b/plugins/httpie/README.md @@ -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) diff --git a/plugins/httpie/httpie.plugin.zsh b/plugins/httpie/httpie.plugin.zsh new file mode 100644 index 000000000..088a1f1cf --- /dev/null +++ b/plugins/httpie/httpie.plugin.zsh @@ -0,0 +1,7 @@ +# +# Aliases +# (sorted alphabetically) +# + +alias https='http --default-scheme=https' + |