add vi-mode segment

This commit is contained in:
Christian Schulze 2015-09-19 13:35:11 +10:00
commit c08a209e20
2 changed files with 11 additions and 0 deletions

View file

@ -575,6 +575,16 @@ prompt_context() {
fi
}
# Vi Mode: show editing mode (NORMAL|INSERT)
prompt_vi_mode() {
local mode="${${KEYMAP/vicmd/NORMAL}/(main|viins)/INSERT}"
if [[ "$mode" == "NORMAL" ]]; then
$1_prompt_segment "$0" "$DEFAULT_COLOR" "default" "$mode"
else
$1_prompt_segment "$0" "$DEFAULT_COLOR" "blue" "$mode"
fi
}
# Dir: current working directory
prompt_dir() {
local current_path='%~'