diff options
| author | meator <meator.dev@gmail.com> | 2025-01-17 19:57:53 +0100 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2025-01-19 18:24:51 +0200 |
| commit | 386fee2305d172ac127b2d055f7557b0af0cbb8c (patch) | |
| tree | d5cc4e4642863db54b1041c4510a18b35a6ae0c2 /data/shell-completions | |
| parent | 05643006a7ee8a457456f8f0a2cbf46c395ecc25 (diff) | |
| download | meson-386fee2305d172ac127b2d055f7557b0af0cbb8c.tar.gz | |
zsh: Add missing flags to 'meson install'
Also start flag description with a lowercase letter.
Diffstat (limited to 'data/shell-completions')
| -rw-r--r-- | data/shell-completions/zsh/_meson | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/data/shell-completions/zsh/_meson b/data/shell-completions/zsh/_meson index f64dfd4f3..661b06a4d 100644 --- a/data/shell-completions/zsh/_meson +++ b/data/shell-completions/zsh/_meson @@ -215,9 +215,14 @@ local -a meson_commands=( local curcontext="$curcontext" local -a specs=( "$__meson_cd" - '--no-rebuild[Do not rebuild before installing]' - '--only-changed[Do not overwrite files that are older than the copied file]' - '(--quiet -q)'{'--quiet','-q'}'[Do not print every file that was installed]' + '--no-rebuild[do not rebuild before installing]' + '--only-changed[do not overwrite files that are older than the copied file]' + '(--quiet -q)'{'--quiet','-q'}'[do not print every file that was installed]' + '--destdir[set or override DESTDIR environment]: :_directories' + '(--dry-run -d)'{'--dry-run','-d'}'[do not actually install, only print logs]' + '--skip-subprojects[do not install files from given subprojects]: : ' + '--tags[install only targets having one of the given tags]: :_values -s , tag devel runtime python-runtime man doc i18n typelib bin bin-devel tests systemtap' + '--strip[strip targets even if strip option was not set during configure]' ) _arguments \ '(: -)'{'--help','-h'}'[show a help message and quit]' \ |
