summaryrefslogtreecommitdiff
path: root/user:hugues
diff options
context:
space:
mode:
authorHugues Hiegel <hugues.hiegel@qosmos.com>2012-09-24 18:04:20 +0200
committerHugues Hiegel <hugues.hiegel@qosmos.com>2012-09-24 18:04:20 +0200
commit5dfc2be3afc8528852b2bfc6911e251d2859f340 (patch)
treed48c09e0e9793d8763745357aa8931a3bfd03535 /user:hugues
parent6de3a217192cb50f1b18d9749bc1e70e739ec7d4 (diff)
TypeMatrix : cmd mode by default
Diffstat (limited to 'user:hugues')
-rw-r--r--user:hugues/KeyBindings.zsh10
1 files changed, 5 insertions, 5 deletions
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.