[Fix #594] Remove quotes surrounding associative array key

This commit is contained in:
Sorin Ionescu 2014-10-06 23:36:10 -04:00
parent c4b50ec1a0
commit 8f711d64b5
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ key_info=(
# bindkey failure.
for key in "${(k)key_info[@]}"; do
if [[ -z "$key_info[$key]" ]]; then
key_info["$key"]='<27>'
key_info[$key]='<27>'
fi
done