diff options
author | David Davis <daviddavis@users.noreply.github.com> | 2022-04-18 06:56:55 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-18 12:56:55 +0200 |
commit | ed411d3ff196e32844409ebe0f8b3e21b0b1c9f6 (patch) | |
tree | 8833accc39adc6a9ade9a6ee5da73b9fff9279da /plugins/httpie | |
parent | eb00b95d26e8f264af80f508d50ac32e50619027 (diff) | |
download | zsh-ed411d3ff196e32844409ebe0f8b3e21b0b1c9f6.tar.gz zsh-ed411d3ff196e32844409ebe0f8b3e21b0b1c9f6.tar.bz2 zsh-ed411d3ff196e32844409ebe0f8b3e21b0b1c9f6.zip |
fix(httpie): remove unnecessary `https` alias (#10856)
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, 0 insertions, 13 deletions
diff --git a/plugins/httpie/README.md b/plugins/httpie/README.md index 40d60c47d..25bdd0c7d 100644 --- a/plugins/httpie/README.md +++ b/plugins/httpie/README.md @@ -11,10 +11,4 @@ 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 deleted file mode 100644 index 088a1f1cf..000000000 --- a/plugins/httpie/httpie.plugin.zsh +++ /dev/null @@ -1,7 +0,0 @@ -# -# Aliases -# (sorted alphabetically) -# - -alias https='http --default-scheme=https' - |