diff options
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  |