Last active
December 10, 2015 14:48
-
-
Save jturmel/4450201 to your computer and use it in GitHub Desktop.
keys.zsh
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| autoload up-line-or-beginning-search | |
| autoload down-line-or-beginning-search | |
| zle -N up-line-or-beginning-search | |
| zle -N down-line-or-beginning-search | |
| bindkey -v # set vim bindings | |
| #http://zshwiki.org/home/zle/bindkeys | |
| typeset -A key | |
| key[Home]=${terminfo[khome]} | |
| key[End]=${terminfo[kend]} | |
| key[Insert]=${terminfo[kich1]} | |
| key[Delete]=${terminfo[kdch1]} | |
| key[Up]=${terminfo[kcuu1]} | |
| key[Down]=${terminfo[kcud1]} | |
| key[Left]=${terminfo[kcub1]} | |
| key[Right]=${terminfo[kcuf1]} | |
| key[PageUp]=${terminfo[kpp]} | |
| key[PageDown]=${terminfo[knp]} | |
| key[Enter]=${terminfo[kent]} | |
| # setup key accordingly | |
| [[ -n "${key[Home]}" ]] && bindkey "${key[Home]}" beginning-of-line | |
| [[ -n "${key[End]}" ]] && bindkey "${key[End]}" end-of-line | |
| [[ -n "${key[Insert]}" ]] && bindkey "${key[Insert]}" overwrite-mode | |
| [[ -n "${key[Delete]}" ]] && bindkey "${key[Delete]}" delete-char | |
| [[ -n "${key[Up]}" ]] && bindkey "${key[Up]}" up-line-or-beginning-search | |
| [[ -n "${key[Down]}" ]] && bindkey "${key[Down]}" down-line-or-beginning-search | |
| [[ -n "${key[Left]}" ]] && bindkey "${key[Left]}" backward-char | |
| [[ -n "${key[Right]}" ]] && bindkey "${key[Right]}" forward-char | |
| [[ -n "${key[Enter]}" ]] && bindkey "${key[Enter]}" enter | |
| # Finally, make sure the terminal is in application mode, when zle is | |
| # active. Only then are the values from $terminfo valid. | |
| zle-line-init () { echoti smkx } | |
| zle-line-finish () { echoti rmkx } | |
| zle -N zle-line-init | |
| zle -N zle-line-finish |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment