completions: bash: update meson sub-command list

Add all meson sub-commands to the autocompletion script.

Signed-off-by: Liam Beguin <liambeguin@gmail.com>
This commit is contained in:
Liam Beguin
2022-09-05 12:19:46 -04:00
committed by Xavier Claessens
parent f08c788f61
commit 24e97e1945

View File

@@ -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
}