From 5dfc2be3afc8528852b2bfc6911e251d2859f340 Mon Sep 17 00:00:00 2001 From: Hugues Hiegel Date: Mon, 24 Sep 2012 18:04:20 +0200 Subject: TypeMatrix : cmd mode by default --- 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 16ba0c2..bffbc9b 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='ins' +zle_default_mode='cmd' # 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]='ESC';; + vicmd) psvar[$psvmodeidx]='';; *) if [[ ${ft_zle_state[overwrite]} == yes ]]; then psvar[$psvmodeidx]='REP' else - psvar[$psvmodeidx]='' + psvar[$psvmodeidx]='INS' 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]='ESC' - else psvar[$psvmodeidx]='' + else + psvar[$psvmodeidx]='INS' fi } # This makes sure the first prompt is drawn correctly. -- cgit v1.2.3