diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2020-09-22 16:08:45 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2020-09-22 16:08:45 -0700 |
commit | 670bc63fda48293beb32224ec160a7a9dfdaa803 (patch) | |
tree | 9c4522ff2aab2f87e2a8816951e32b38f1a63d01 /data | |
parent | f2572ea077996f2aa64857c3a7b3098ebbb61ee6 (diff) | |
download | meson-670bc63fda48293beb32224ec160a7a9dfdaa803.zip meson-670bc63fda48293beb32224ec160a7a9dfdaa803.tar.gz meson-670bc63fda48293beb32224ec160a7a9dfdaa803.tar.bz2 |
zsh: add missing options for meson introspect
Diffstat (limited to 'data')
-rw-r--r-- | data/shell-completions/zsh/_meson | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/data/shell-completions/zsh/_meson b/data/shell-completions/zsh/_meson index 6f05447..aec1847 100644 --- a/data/shell-completions/zsh/_meson +++ b/data/shell-completions/zsh/_meson @@ -184,14 +184,16 @@ local -a meson_commands=( (( $+functions[_meson-introspect] )) || _meson-introspect() { local curcontext="$curcontext" local -a specs=( - '--targets[list top level targets]' - '--installed[list all installed files and directories]' - '--buildsystem-files[list files that belong to the build system]' - '--buildoptions[list all build options]' - '--tests[list all unit tests]' + '--ast[dump the ASK of the meson file]' '--benchmarks[list all benchmarks]' + '--buildoptions[list all build options]' + '--buildsystem-files[list files that belong to the build system]' '--dependencies[list external dependencies]' + '--installed[list all installed files and directories]' '--projectinfo[show project information]' + '--targets[list top level targets]' + '--tests[list all unit tests]' + '--backend=[backend to use]:Meson backend:'"$__meson_backends" '::build directory:_directories' ) _arguments \ |