1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2025-06-15 08:01:43 +00:00

Rename $editor_keymap_info to $editor_info[keymap]

This commit is contained in:
Sorin Ionescu
2012-04-09 18:46:48 -04:00
parent 9e6df0511e
commit 64da1ed627
2 changed files with 9 additions and 4 deletions

View File

@ -44,7 +44,7 @@ zle -N edit-command-line
# Use human-friendly identifiers.
zmodload zsh/terminfo
typeset -gA key_info
typeset -gA key_info editor_info
key_info=(
'Control' '\C-'
'Escape' '\e'
@ -86,10 +86,15 @@ done
# Displays the current vi mode.
function zle-line-init zle-line-finish zle-keymap-select {
if [[ "$KEYMAP" == 'vicmd' ]]; then
zstyle -s ':omz:module:editor:keymap' alternate 'editor_keymap_info'
zstyle -s ':omz:module:editor:keymap' alternate 'REPLY'
else
zstyle -s ':omz:module:editor:keymap' primary 'editor_keymap_info'
zstyle -s ':omz:module:editor:keymap' primary 'REPLY'
fi
editor_info[keymap]="$REPLY"
unset REPLY
zle reset-prompt
zle -R
}