mirror of
https://github.com/mesonbuild/meson.git
synced 2026-06-30 19:57:45 +00:00
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:
committed by
Xavier Claessens
parent
f08c788f61
commit
24e97e1945
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user