Browse Source

[Fix #594] Remove quotes surrounding associative array key

master
Sorin Ionescu 10 years ago
parent
commit
8f711d64b5
  1. 2
      modules/editor/init.zsh

2
modules/editor/init.zsh

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

Loading…
Cancel
Save