[Fix #351] Set empty keys to an invalid UTF-8 sequence
This commit is contained in:
parent
185235003e
commit
f4d9b32de9
|
@ -90,12 +90,11 @@ key_info=(
|
||||||
'BackTab' "$terminfo[kcbt]"
|
'BackTab' "$terminfo[kcbt]"
|
||||||
)
|
)
|
||||||
|
|
||||||
# Do not bind any keys if there are empty values in $key_info.
|
# Set empty $key_info values to an invalid UTF-8 sequence to induce silent
|
||||||
|
# bindkey failure.
|
||||||
for key in "${(k)key_info[@]}"; do
|
for key in "${(k)key_info[@]}"; do
|
||||||
if [[ -z "$key_info[$key]" ]]; then
|
if [[ -z "$key_info[$key]" ]]; then
|
||||||
print "prezto: one or more keys are non-bindable" >&2
|
key_info["$key"]='<27>'
|
||||||
unset key{,_info}
|
|
||||||
return 1
|
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue