From 84f5d397fb061594448229bf6f5d0ffe567aaf09 Mon Sep 17 00:00:00 2001 From: Hugues Hiegel Date: Wed, 26 Sep 2012 16:39:28 +0200 Subject: Revert "TypeMatrix : cmd mode by default" This reverts commit 5dfc2be3afc8528852b2bfc6911e251d2859f340. --- user:hugues/KeyBindings.zsh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'user:hugues') diff --git a/user:hugues/KeyBindings.zsh b/user:hugues/KeyBindings.zsh index 464b219..d236bfb 100644 --- a/user:hugues/KeyBindings.zsh +++ b/user:hugues/KeyBindings.zsh @@ -35,7 +35,7 @@ zle -N replace-string-again ### CONFIGURATION ########################################################## # Use either `ins' or `cmd' as the default input mode. -zle_default_mode='cmd' +zle_default_mode='ins' # This defines in which index of `$psvar[]' the information is tracked. # The default is `1'. Set this to whatever fits you best. @@ -85,12 +85,12 @@ function ft-psvx() { fi else case ${KEYMAP} in - vicmd) psvar[$psvmodeidx]='';; + vicmd) psvar[$psvmodeidx]='ESC';; *) if [[ ${ft_zle_state[overwrite]} == yes ]]; then psvar[$psvmodeidx]='REP' else - psvar[$psvmodeidx]='INS' + psvar[$psvmodeidx]='' fi ;; esac @@ -102,9 +102,9 @@ function ft-psvx() { # newly drawn prompt has the correct mode display. function ft-psvx-default() { if [[ ${zle_default_mode} == 'cmd' ]]; then - psvar[$psvmodeidx]='' + psvar[$psvmodeidx]='ESC' else - psvar[$psvmodeidx]='INS' + psvar[$psvmodeidx]='' fi } # This makes sure the first prompt is drawn correctly. -- cgit v1.2.3