diff options
| author | Kanashimia <56224949+kanashimia@users.noreply.github.com> | 2020-05-05 02:41:27 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-05 02:41:27 +0300 |
| commit | 44b3d21dd72a5b9ddd6b39442e013ef105d54ba9 (patch) | |
| tree | c262e319413ccbfb28051d3a216b151569a47d38 /src/_stack | |
| parent | Update _stack (diff) | |
| download | zsh-completions-44b3d21dd72a5b9ddd6b39442e013ef105d54ba9.tar zsh-completions-44b3d21dd72a5b9ddd6b39442e013ef105d54ba9.tar.gz zsh-completions-44b3d21dd72a5b9ddd6b39442e013ef105d54ba9.tar.bz2 zsh-completions-44b3d21dd72a5b9ddd6b39442e013ef105d54ba9.tar.lz zsh-completions-44b3d21dd72a5b9ddd6b39442e013ef105d54ba9.tar.xz zsh-completions-44b3d21dd72a5b9ddd6b39442e013ef105d54ba9.tar.zst zsh-completions-44b3d21dd72a5b9ddd6b39442e013ef105d54ba9.zip | |
Fix all words to start with a lowercase letter.
Diffstat (limited to 'src/_stack')
| -rw-r--r-- | src/_stack | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -78,14 +78,14 @@ _stack () { --no-allow-different-user'[disable permission for non-owners to use a stack installation (POSIX only)]' \ --dump-logs'[enable dump the build output logs for local packages to the console]' \ --no-dump-logs'[disable dump the build output logs for local packages to the console]' \ - {--color,--colour}'[Specify when to use color in output; WHEN is "always", "never", or "auto".]' \ + {--color,--colour}'[specify when to use color in output; WHEN is "always", "never", or "auto".]' \ --resolver'[override resolver in project file]' \ --terminal'[enable overriding terminal detection in the case of running in a false terminal]' \ --no-terminal'[disable overriding terminal detection in the case of running in a false terminal]' \ - {--stack-colors,--stack-colours}"[Specify stack's output styles]" \ - --terminal-width'[Specify the width of the terminal, used for pretty-print messages]' \ + {--stack-colors,--stack-colours}"[specify stack's output styles]" \ + --terminal-width'[specify the width of the terminal, used for pretty-print messages]' \ --stack-yaml'[override project stack.yaml file]' \ - --lock-file'[Specify how to interact with lock files.]' \ + --lock-file'[specify how to interact with lock files.]' \ '*: :__stack_modes' } @@ -121,11 +121,11 @@ __stack_modes () { 'eval[evaluate some haskell code inline.]' \ 'clean[delete build artefacts for the project packages.]' \ 'purge[delete the project stack working directories.]' \ - 'query[Query general build information (experimental)]' \ - 'ide[IDE-specific commands]' \ + 'query[query general build information (experimental)]' \ + 'ide[ide-specific commands]' \ 'docker[subcommands specific to Docker use]' \ - 'config[Subcommands for accessing and modifying configuration values]' \ - 'hpc[Subcommands specific to Haskell Program Coverage]' + 'config[subcommands for accessing and modifying configuration values]' \ + 'hpc[subcommands specific to Haskell Program Coverage]' } |
