@@ -15,11 +15,11 @@ if (( ${+terminfo[smkx]} )) && (( ${+terminfo[rmkx]} )); then
...
@@ -15,11 +15,11 @@ if (( ${+terminfo[smkx]} )) && (( ${+terminfo[rmkx]} )); then
zle -N zle-line-finish
zle -N zle-line-finish
fi
fi
bindkey -e# Use emacs key bindings
bindkey -e# Use emacs key bindings
bindkey '\ew' kill-region # [Esc-w] - Kill from the cursor to the mark
bindkey '\ew' kill-region # [Esc-w] - Kill from the cursor to the mark
bindkey -s'\el''ls\n'# [Esc-l] - run command: ls
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 '^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.
if[["${terminfo[kpp]}"!=""]];then
if[["${terminfo[kpp]}"!=""]];then
bindkey "${terminfo[kpp]}" up-line-or-history # [PageUp] - Up a line of history
bindkey "${terminfo[kpp]}" up-line-or-history # [PageUp] - Up a line of history
fi
fi
...
@@ -41,16 +41,16 @@ if [[ "${terminfo[kend]}" != "" ]]; then
...
@@ -41,16 +41,16 @@ if [[ "${terminfo[kend]}" != "" ]]; then
bindkey "${terminfo[kend]}" end-of-line # [End] - Go to end of line
bindkey "${terminfo[kend]}" end-of-line # [End] - Go to end of line
fi
fi
bindkey ' ' magic-space # [Space] - do history expansion
bindkey ' ' magic-space # [Space] - do history expansion
bindkey '^[[1;5C' forward-word # [Ctrl-RightArrow] - move forward one word
bindkey '^[[1;5C' forward-word # [Ctrl-RightArrow] - move forward one word
bindkey '^[[1;5D' backward-word # [Ctrl-LeftArrow] - move backward one word
bindkey '^[[1;5D' backward-word # [Ctrl-LeftArrow] - move backward one word
if[["${terminfo[kdch1]}"!=""]];then
if[["${terminfo[kdch1]}"!=""]];then
bindkey "${terminfo[kdch1]}" reverse-menu-complete# [Shift-Tab] - move through the completion menu backwards
bindkey "${terminfo[kdch1]}" reverse-menu-complete# [Shift-Tab] - move through the completion menu backwards