diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2022-11-14 19:31:24 +0100 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2022-12-04 19:36:28 +0100 |
commit | e6d83576855354db5ebb5e75897a375e804d2e9f (patch) | |
tree | 555afd8d39808893b630183d803bd2e3c87d71e4 /misc/dist/shell/godot.bash-completion | |
parent | 015dc492de33a41eaeb14c0503a6be10466fe457 (diff) |
Improve command line help to fit on narrower displays
- Update shell completions to reference recently added CLI arguments.
Diffstat (limited to 'misc/dist/shell/godot.bash-completion')
-rw-r--r-- | misc/dist/shell/godot.bash-completion | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/misc/dist/shell/godot.bash-completion b/misc/dist/shell/godot.bash-completion index 02dcc94033..73107c0cf3 100644 --- a/misc/dist/shell/godot.bash-completion +++ b/misc/dist/shell/godot.bash-completion @@ -53,6 +53,7 @@ _complete_godot_options() { --text-driver --tablet-driver --headless +--write-movie --fullscreen --maximized --windowed @@ -60,6 +61,7 @@ _complete_godot_options() { --resolution --position --single-window +--xr-mode --debug --breakpoints --profiling @@ -72,6 +74,7 @@ _complete_godot_options() { --debug-stringnames --frame-delay --time-scale +--disable-vsync --disable-render-loop --disable-crash-handler --fixed-fps @@ -88,6 +91,8 @@ _complete_godot_options() { --build-solutions --dump-gdextension-interface --dump-extension-api +--startup-benchmark +--startup-benchmark-file --test " -- "$1")) } @@ -121,6 +126,10 @@ _complete_godot_bash() { local IFS=$' \n\t' # shellcheck disable=SC2207 COMPREPLY=($(compgen -W "vulkan opengl3 dummy" -- "$cur")) + elif [[ $prev == "--xr-mode" ]]; then + local IFS=$' \n\t' + # shellcheck disable=SC2207 + COMPREPLY=($(compgen -W "default off on" -- "$cur")) elif [[ $prev == "--path" || $prev == "--doctool" ]]; then local IFS=$'\n\t' # shellcheck disable=SC2207 |