diff options
Diffstat (limited to 'plugins')
| -rw-r--r-- | plugins/gem/_gem | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/plugins/gem/_gem b/plugins/gem/_gem index 975cec602..66c77b7d1 100644 --- a/plugins/gem/_gem +++ b/plugins/gem/_gem @@ -4,10 +4,11 @@  # gem zsh completion, based on homebrew completion  _gem_installed() { -  installed_gems=(`gem list --local --no-versions`) +  installed_gems=(${(f)"$(gem list --local --no-versions)"})  }  local -a _1st_arguments +  _1st_arguments=(    'build:Build a gem from a gemspec'    'cert:Manage RubyGems certificates and signing settings' | 
