mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-18 03:40:08 +00:00
fix(dirhistory): fix ALT+Left/Right key bindings for iTerm2 (#9940)
This commit is contained in:
parent
7ab15bee03
commit
308b2314f8
1 changed files with 12 additions and 3 deletions
|
@ -124,10 +124,14 @@ zle -N dirhistory_zle_dirhistory_back
|
||||||
# xterm in normal mode
|
# xterm in normal mode
|
||||||
bindkey "\e[3D" dirhistory_zle_dirhistory_back
|
bindkey "\e[3D" dirhistory_zle_dirhistory_back
|
||||||
bindkey "\e[1;3D" dirhistory_zle_dirhistory_back
|
bindkey "\e[1;3D" dirhistory_zle_dirhistory_back
|
||||||
# Mac teminal (alt+left/right)
|
# Terminal.app
|
||||||
if [[ "$TERM_PROGRAM" == "Apple_Terminal" || "$TERM_PROGRAM" == "iTerm.app" ]]; then
|
if [[ "$TERM_PROGRAM" == "Apple_Terminal" ]]; then
|
||||||
bindkey "^[b" dirhistory_zle_dirhistory_back
|
bindkey "^[b" dirhistory_zle_dirhistory_back
|
||||||
fi
|
fi
|
||||||
|
# iTerm2
|
||||||
|
if [[ "$TERM_PROGRAM" == "iTerm.app" ]]; then
|
||||||
|
bindkey "^[^[[D" dirhistory_zle_dirhistory_back
|
||||||
|
fi
|
||||||
# Putty:
|
# Putty:
|
||||||
bindkey "\e\e[D" dirhistory_zle_dirhistory_back
|
bindkey "\e\e[D" dirhistory_zle_dirhistory_back
|
||||||
# GNU screen:
|
# GNU screen:
|
||||||
|
@ -136,9 +140,14 @@ bindkey "\eO3D" dirhistory_zle_dirhistory_back
|
||||||
zle -N dirhistory_zle_dirhistory_future
|
zle -N dirhistory_zle_dirhistory_future
|
||||||
bindkey "\e[3C" dirhistory_zle_dirhistory_future
|
bindkey "\e[3C" dirhistory_zle_dirhistory_future
|
||||||
bindkey "\e[1;3C" dirhistory_zle_dirhistory_future
|
bindkey "\e[1;3C" dirhistory_zle_dirhistory_future
|
||||||
if [[ "$TERM_PROGRAM" == "Apple_Terminal" || "$TERM_PROGRAM" == "iTerm.app" ]]; then
|
# Terminal.app
|
||||||
|
if [[ "$TERM_PROGRAM" == "Apple_Terminal" ]]; then
|
||||||
bindkey "^[f" dirhistory_zle_dirhistory_future
|
bindkey "^[f" dirhistory_zle_dirhistory_future
|
||||||
fi
|
fi
|
||||||
|
# iTerm2
|
||||||
|
if [[ "$TERM_PROGRAM" == "iTerm.app" ]]; then
|
||||||
|
bindkey "^[^[[C" dirhistory_zle_dirhistory_future
|
||||||
|
fi
|
||||||
bindkey "\e\e[C" dirhistory_zle_dirhistory_future
|
bindkey "\e\e[C" dirhistory_zle_dirhistory_future
|
||||||
bindkey "\eO3C" dirhistory_zle_dirhistory_future
|
bindkey "\eO3C" dirhistory_zle_dirhistory_future
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue