diff options
| author | Shohei YOSHIDA <syohex@gmail.com> | 2026-03-08 22:02:04 +0900 |
|---|---|---|
| committer | Shohei YOSHIDA <syohex@gmail.com> | 2026-03-08 22:02:04 +0900 |
| commit | 95b7c563b2d72d097723be80bb8d9f09898ffd37 (patch) | |
| tree | 79b9665a2845c700b45cc9ae90e085cd89d00ffd /src | |
| parent | Fix glances completion (diff) | |
| download | zsh-completions-95b7c563b2d72d097723be80bb8d9f09898ffd37.tar zsh-completions-95b7c563b2d72d097723be80bb8d9f09898ffd37.tar.gz zsh-completions-95b7c563b2d72d097723be80bb8d9f09898ffd37.tar.bz2 zsh-completions-95b7c563b2d72d097723be80bb8d9f09898ffd37.tar.lz zsh-completions-95b7c563b2d72d097723be80bb8d9f09898ffd37.tar.xz zsh-completions-95b7c563b2d72d097723be80bb8d9f09898ffd37.tar.zst zsh-completions-95b7c563b2d72d097723be80bb8d9f09898ffd37.zip | |
Fix gas completion
- remove needless '|'
Diffstat (limited to 'src')
| -rw-r--r-- | src/_gas | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -38,7 +38,7 @@ local curcontext="$curcontext" state line cmds ret=1 _arguments -C \ '(- 1 *)'{-v,--version}'[display version information]' \ - '(-h|--help)'{-h,--help}'[show help information]' \ + '(-h --help)'{-h,--help}'[show help information]' \ '1: :->cmds' \ '*: :->args' && ret=0 @@ -67,3 +67,10 @@ esac return ret +# Local Variables: +# mode: Shell-Script +# sh-indentation: 2 +# indent-tabs-mode: nil +# sh-basic-offset: 2 +# End: +# vim: ft=zsh sw=2 ts=2 et |
