diff options
| author | Carlo Sala <carlosalag@protonmail.com> | 2024-10-08 21:50:31 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-08 21:50:31 +0200 |
| commit | 61bacd95b285a9792a05d1c818d9cee15ebe53c6 (patch) | |
| tree | 0b4180521edfa7aef9685e015df4889014de622e /plugins | |
| parent | ba1732833b81c69df5135825d38ea9d889d1aa47 (diff) | |
| download | zsh-61bacd95b285a9792a05d1c818d9cee15ebe53c6.tar.gz zsh-61bacd95b285a9792a05d1c818d9cee15ebe53c6.tar.bz2 zsh-61bacd95b285a9792a05d1c818d9cee15ebe53c6.zip | |
fix(gem): regression with gem completion (#12735)
Diffstat (limited to 'plugins')
| -rw-r--r-- | plugins/gem/gem.plugin.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/gem/gem.plugin.zsh b/plugins/gem/gem.plugin.zsh index 58716594d..41c434a09 100644 --- a/plugins/gem/gem.plugin.zsh +++ b/plugins/gem/gem.plugin.zsh @@ -11,7 +11,7 @@ function gemy { if [[ ! -f "$ZSH_CACHE_DIR/completions/_gem" ]]; then typeset -g -A _comps autoload -Uz _gem - _comps[docker]=_gem + _comps[gem]=_gem fi # zsh 5.5 already provides completion for `_gem`. With this we ensure that |
