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

Loading…
Cancel
Save