39 lines
1.7 KiB
Bash
39 lines
1.7 KiB
Bash
|
# partial outtake from ohmyzsh lib/key-bindings.zsh
|
||
|
# https://github.com/ohmyzsh/ohmyzsh/pull/1355/files
|
||
|
if (( ${+terminfo[smkx]} )) && (( ${+terminfo[rmkx]} )); then
|
||
|
function zle-line-init() {
|
||
|
echoti smkx
|
||
|
}
|
||
|
function zle-line-finish() {
|
||
|
echoti rmkx
|
||
|
}
|
||
|
zle -N zle-line-init
|
||
|
zle -N zle-line-finish
|
||
|
fi
|
||
|
|
||
|
bindkey -e # Use emacs key bindings
|
||
|
|
||
|
bindkey '\ew' kill-region # [Esc-w] - Kill from the cursor to the mark
|
||
|
bindkey -s '\el' 'ls\n' # [Esc-l] - run command: ls
|
||
|
bindkey '^r' history-incremental-search-backward # [Ctrl-r] - Search backward incrementally for a specified string. The string may begin with ^ to anchor the search to the beginning of the line.
|
||
|
bindkey "${terminfo[kpp]}" up-line-or-history # [PageUp] - Up a line of history
|
||
|
bindkey "${terminfo[knp]}" down-line-or-history # [PageDown] - Down a line of history
|
||
|
|
||
|
bindkey "${terminfo[kcuu1]}" history-substring-search-up
|
||
|
bindkey "${terminfo[kcud1]}" history-substring-search-down
|
||
|
|
||
|
bindkey "${terminfo[khome]}" beginning-of-line # [Home] - Go to beginning of line
|
||
|
bindkey "${terminfo[kend]}" end-of-line # [End] - Go to end of line
|
||
|
|
||
|
bindkey ' ' magic-space # [Space] - do history expansion
|
||
|
|
||
|
bindkey '^[[1;5C' forward-word # [Ctrl-RightArrow] - move forward one word
|
||
|
bindkey '^[[1;5D' backward-word # [Ctrl-LeftArrow] - move backward one word
|
||
|
|
||
|
bindkey "${terminfo[kcbt]}" reverse-menu-complete # [Shift-Tab] - move through the completion menu backwards
|
||
|
|
||
|
bindkey '^?' backward-delete-char # [Backspace] - delete backward
|
||
|
bindkey "${terminfo[kdch1]}" delete-char # [Delete] - delete forward
|
||
|
|
||
|
|