completions: bash: update meson sub-command list

Add all meson sub-commands to the autocompletion script.

Signed-off-by: Liam Beguin <liambeguin@gmail.com>
pull/10827/head
Liam Beguin 2 years ago committed by Xavier Claessens
parent f08c788f61
commit 24e97e1945
  1. 27
      data/shell-completions/bash/meson

@ -3,13 +3,18 @@ _meson() {
case "$command" in case "$command" in
setup |\ setup |\
configure |\ configure |\
dist | \
install |\ install |\
introspect |\ introspect |\
init |\ init |\
test |\ test |\
wrap |\ wrap |\
subprojects |\ subprojects |\
help) help |\
rewrite |\
compile |\
devenv |\
env2mfile)
_meson-$command "${COMP_WORDS[@]:1}" _meson-$command "${COMP_WORDS[@]:1}"
;; ;;
*) *)
@ -242,6 +247,10 @@ _meson-configure() {
fi fi
} }
_meson-dist() {
: TODO
}
_meson-install() { _meson-install() {
: TODO : TODO
} }
@ -430,3 +439,19 @@ _meson-subprojects() {
_meson-help() { _meson-help() {
: # Nothing to do : # Nothing to do
} }
_meson-rewrite() {
: TODO
}
_meson-compile() {
: TODO
}
_meson-devenv() {
: TODO
}
_meson-env2mfile() {
: TODO
}

Loading…
Cancel
Save