mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-25 23:30:08 +00:00
Add support for Mac to dirhistory plugin (#6533)
Add shortcuts for mac keyboards as an alternative to alt+left abd alt+right: mac users can now use opt+left and opt+right.
This commit is contained in:
parent
ccf20b4b17
commit
215e43aa8a
1 changed files with 3 additions and 0 deletions
|
@ -119,6 +119,8 @@ 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)
|
||||||
|
bindkey "^[b" dirhistory_zle_dirhistory_back
|
||||||
# Putty:
|
# Putty:
|
||||||
bindkey "\e\e[D" dirhistory_zle_dirhistory_back
|
bindkey "\e\e[D" dirhistory_zle_dirhistory_back
|
||||||
# GNU screen:
|
# GNU screen:
|
||||||
|
@ -127,6 +129,7 @@ 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
|
||||||
|
bindkey "^[f" dirhistory_zle_dirhistory_future
|
||||||
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