mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-12-29 19:12:20 +01:00
39094: _git-config: When an option is unknown, complete its value to the set value.
This commit is contained in:
parent
acad0620ef
commit
4d995160e4
2 changed files with 11 additions and 2 deletions
|
|
@ -2597,7 +2597,7 @@ _git-config () {
|
|||
# If $key isn't an instance of a known foo.*.bar:baz $git_options entry...
|
||||
if ! (( ${+git_options[(r)(#i)${(b)key%%.*}.[*].${(b)key##*.}:*]} )); then
|
||||
# ... then add it.
|
||||
git_options+="${key}:unknown option name"
|
||||
git_options+="${key}:unknown option name::->unknown"
|
||||
fi
|
||||
else
|
||||
# $key is of the form "foo.bar" where 'foo' is known
|
||||
|
|
@ -2606,7 +2606,7 @@ _git-config () {
|
|||
continue
|
||||
fi
|
||||
else
|
||||
git_options+="${key}:unknown option name"
|
||||
git_options+="${key}:unknown option name::->unknown"
|
||||
fi
|
||||
done
|
||||
}
|
||||
|
|
@ -3207,6 +3207,10 @@ _git-config () {
|
|||
'values:value:(user)' \
|
||||
'umasks: :__git_guard_number umask' && ret=0
|
||||
;;
|
||||
(unknown)
|
||||
_message "$line[1] option value"
|
||||
compadd - $current && ret=0
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
(*)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue