mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-11-29 05:19:54 +01:00
Merge branch 'fix/gsettings-completion-nounset-choices' into 'main'
completion: fix error on nounset mode unknown completions See merge request GNOME/glib!4907
This commit is contained in:
@@ -109,7 +109,7 @@ __gsettings() {
|
||||
|
||||
local IFS=$'\n'
|
||||
# shellcheck disable=SC2207
|
||||
COMPREPLY=($(compgen -W "${choices}" -- "${COMP_WORDS[${COMP_CWORD}]}"))
|
||||
COMPREPLY=($(compgen -W "${choices-}" -- "${COMP_WORDS[${COMP_CWORD}]}"))
|
||||
}
|
||||
|
||||
####################################################################################################
|
||||
|
||||
Reference in New Issue
Block a user