vi-mode.plugin.zsh 1.3 KB
Newer Older
1
2
# Updates editor information when the keymap changes.
function zle-keymap-select() {
3
4
5
  # update keymap variable for the prompt
  VI_KEYMAP=$KEYMAP

6
  zle reset-prompt
7
  zle -R
8
9
10
}

zle -N zle-keymap-select
11
12
zle -N edit-command-line

13
14
15

bindkey -v

16
17
18
19
# allow v to edit the command line (standard behaviour)
autoload -Uz edit-command-line
bindkey -M vicmd 'v' edit-command-line

20
21
22
23
# allow ctrl-p, ctrl-n for navigate history (standard behaviour)
bindkey '^P' up-history
bindkey '^N' down-history

24
25
26
27
28
# allow ctrl-h, ctrl-w, ctrl-? for char and word deletion (standard behaviour)
bindkey '^?' backward-delete-char
bindkey '^h' backward-delete-char
bindkey '^w' backward-kill-word

29
# allow ctrl-r and ctrl-s to search the history
30
bindkey '^r' history-incremental-search-backward
31
bindkey '^s' history-incremental-search-forward
32
33
34
35
36

# allow ctrl-a and ctrl-e to move to beginning/end of line
bindkey '^a' beginning-of-line
bindkey '^e' end-of-line

37
38
39
40
41
42
# if mode indicator wasn't setup by theme, define default
if [[ "$MODE_INDICATOR" == "" ]]; then
  MODE_INDICATOR="%{$fg_bold[red]%}<%{$fg[red]%}<<%{$reset_color%}"
fi

function vi_mode_prompt_info() {
43
  echo "${${VI_KEYMAP/vicmd/$MODE_INDICATOR}/(main|viins)/}"
44
45
46
47
48
49
}

# define right prompt, if it wasn't defined by a theme
if [[ "$RPS1" == "" && "$RPROMPT" == "" ]]; then
  RPS1='$(vi_mode_prompt_info)'
fi