-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzsh-vim-mode
27 lines (27 loc) · 959 Bytes
/
zsh-vim-mode
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# # bindkey -e will be emacs mode
# bindkey -v
# export KEYTIMEOUT=1
#
# # Use vim keys in tab complete menu:
# bindkey -M menuselect '^h' vi-backward-char
# bindkey -M menuselect '^k' vi-up-line-or-history
# bindkey -M menuselect '^l' vi-forward-char
# bindkey -M menuselect '^j' vi-down-line-or-history
# bindkey -M menuselect '^[[Z' vi-up-line-or-history
# bindkey -v '^?' backward-delete-char
#
# # Change cursor shape for different vi modes.
# function zle-keymap-select () {
# case $KEYMAP in
# vicmd) echo -ne '\e[1 q';; # block
# viins|main) echo -ne '\e[5 q';; # beam
# esac
# }
# zle -N zle-keymap-select
# zle-line-init() {
# zle -K viins # initiate `vi insert` as keymap (can be removed if `bindkey -V` has been set elsewhere)
# echo -ne "\e[5 q"
# }
# zle -N zle-line-init
# echo -ne '\e[5 q' # Use beam shape cursor on startup.
# preexec() { echo -ne '\e[5 q' ;} # Use beam shape cursor for each new prompt.