2012-01-31 23:37:51 -05:00
|
|
|
#
|
|
|
|
# Sets keyboard bindings.
|
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
|
|
#
|
|
|
|
|
2011-10-10 21:25:53 -04:00
|
|
|
# Dumb terminals lack support.
|
|
|
|
if [[ "$TERM" == 'dumb' ]]; then
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2011-09-27 22:00:28 -04:00
|
|
|
# The default styles.
|
2011-12-26 13:37:53 -05:00
|
|
|
|
|
|
|
# Indicator to notify of vi command mode.
|
|
|
|
zstyle ':omz:prompt' vicmd '<<<'
|
|
|
|
|
|
|
|
# Indicator to notify of generating completion.
|
2011-12-26 13:37:54 -05:00
|
|
|
zstyle ':omz:completion' indicator '...'
|
2011-09-27 22:00:28 -04:00
|
|
|
|
2011-07-30 01:54:11 -04:00
|
|
|
# Beep on error in line editor.
|
2011-10-10 22:16:06 -04:00
|
|
|
setopt BEEP
|
2009-09-22 19:49:00 -04:00
|
|
|
|
2011-08-14 21:14:57 -04:00
|
|
|
# Reset to default key bindings.
|
|
|
|
bindkey -d
|
|
|
|
|
|
|
|
# Allow command line editing in an external editor.
|
|
|
|
autoload -Uz edit-command-line
|
|
|
|
zle -N edit-command-line
|
|
|
|
|
2011-07-30 01:54:11 -04:00
|
|
|
# Use human-friendly identifiers.
|
2011-09-27 22:08:29 -04:00
|
|
|
zmodload zsh/terminfo
|
2011-09-27 22:12:53 -04:00
|
|
|
typeset -g -A keyinfo
|
|
|
|
keyinfo=(
|
2011-07-30 01:54:11 -04:00
|
|
|
'Control' '\C-'
|
|
|
|
'Escape' '\e'
|
|
|
|
'Meta' '\M-'
|
2011-10-10 21:31:18 -04:00
|
|
|
'F1' "$terminfo[kf1]"
|
|
|
|
'F2' "$terminfo[kf2]"
|
|
|
|
'F3' "$terminfo[kf3]"
|
|
|
|
'F4' "$terminfo[kf4]"
|
|
|
|
'F5' "$terminfo[kf5]"
|
|
|
|
'F6' "$terminfo[kf6]"
|
|
|
|
'F7' "$terminfo[kf7]"
|
|
|
|
'F8' "$terminfo[kf8]"
|
|
|
|
'F9' "$terminfo[kf9]"
|
|
|
|
'F10' "$terminfo[kf10]"
|
|
|
|
'F11' "$terminfo[kf11]"
|
|
|
|
'F12' "$terminfo[kf12]"
|
|
|
|
'Backspace' "$terminfo[kbs]"
|
|
|
|
'Insert' "$terminfo[kich1]"
|
|
|
|
'Home' "$terminfo[khome]"
|
|
|
|
'PageUp' "$terminfo[kpp]"
|
|
|
|
'Delete' "$terminfo[kdch1]"
|
|
|
|
'End' "$terminfo[kend]"
|
|
|
|
'PageDown' "$terminfo[knp]"
|
|
|
|
'Up' "$terminfo[kcuu1]"
|
|
|
|
'Left' "$terminfo[kcub1]"
|
|
|
|
'Down' "$terminfo[kcud1]"
|
|
|
|
'Right' "$terminfo[kcuf1]"
|
|
|
|
'BackTab' "$terminfo[kcbt]"
|
2011-07-30 01:54:11 -04:00
|
|
|
)
|
2009-09-22 20:18:15 -04:00
|
|
|
|
2012-03-18 18:14:28 -04:00
|
|
|
# Restores RPROMPT when exiting vicmd.
|
|
|
|
function vi-restore-rprompt() {
|
|
|
|
if (( $+RPROMPT_CACHED )); then
|
|
|
|
RPROMPT="$RPROMPT_CACHED"
|
|
|
|
unset RPROMPT_CACHED
|
|
|
|
zle reset-prompt
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
add-zsh-trap INT vi-restore-rprompt
|
|
|
|
|
|
|
|
# Displays the current vi mode (command).
|
|
|
|
function zle-keymap-select() {
|
|
|
|
if ! vi-restore-rprompt && [[ "$KEYMAP" == 'vicmd' ]]; then
|
|
|
|
RPROMPT_CACHED="$RPROMPT"
|
|
|
|
zstyle -s ':omz:prompt' vicmd RPROMPT
|
|
|
|
zle reset-prompt
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
zle -N zle-keymap-select
|
|
|
|
|
|
|
|
# Resets the prompt after exiting edit-command-line.
|
|
|
|
function zle-line-init() {
|
|
|
|
vi-restore-rprompt
|
|
|
|
}
|
|
|
|
zle -N zle-line-init
|
|
|
|
|
|
|
|
# Resets the prompt after the line has been accepted.
|
|
|
|
function zle-line-finish() {
|
|
|
|
vi-restore-rprompt
|
|
|
|
}
|
|
|
|
zle -N zle-line-finish
|
|
|
|
|
2012-03-18 21:11:49 -04:00
|
|
|
# Expands .... to ../..
|
2012-03-18 19:00:12 -04:00
|
|
|
function expand-dot-to-parent-directory-path() {
|
|
|
|
if [[ $LBUFFER = *.. ]]; then
|
|
|
|
LBUFFER+='/..'
|
|
|
|
else
|
|
|
|
LBUFFER+='.'
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
zle -N expand-dot-to-parent-directory-path
|
|
|
|
|
|
|
|
# Displays an indicator when completing.
|
2012-03-20 20:52:42 -04:00
|
|
|
function expand-or-complete-with-indicator() {
|
2012-03-18 19:00:12 -04:00
|
|
|
local indicator
|
|
|
|
zstyle -s ':omz:completion' indicator 'indicator'
|
|
|
|
print -Pn "$indicator"
|
|
|
|
zle expand-or-complete-prefix
|
|
|
|
zle redisplay
|
|
|
|
}
|
2012-03-20 20:52:42 -04:00
|
|
|
zle -N expand-or-complete-with-indicator
|
2012-03-18 19:00:12 -04:00
|
|
|
|
2012-03-18 19:20:00 -04:00
|
|
|
# Inserts 'sudo ' at the beginning of the line.
|
|
|
|
function prepend-sudo() {
|
|
|
|
if [[ "$BUFFER" != su(do|)\ * ]]; then
|
|
|
|
BUFFER="sudo $BUFFER"
|
|
|
|
(( CURSOR += 5 ))
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
zle -N prepend-sudo
|
|
|
|
|
2012-03-18 20:45:59 -04:00
|
|
|
# Emacs key bindings.
|
|
|
|
[[ -n "$keyinfo[Escape]" ]] && \
|
|
|
|
for key in "$keyinfo[Escape]"{B,b}; \
|
|
|
|
bindkey -M emacs "$key" emacs-backward-word
|
|
|
|
[[ -n "$keyinfo[Escape]" ]] && \
|
|
|
|
for key in "$keyinfo[Escape]"{F,f}; \
|
|
|
|
bindkey -M emacs "$key" emacs-forward-word
|
|
|
|
[[ -n "$keyinfo[Escape]" && -n "$keyinfo[Left]" ]] && \
|
|
|
|
bindkey -M emacs "$keyinfo[Escape]$keyinfo[Left]" emacs-backward-word
|
|
|
|
[[ -n "$keyinfo[Escape]" && -n "$keyinfo[Right]" ]] && \
|
|
|
|
bindkey -M emacs "$keyinfo[Escape]$keyinfo[Right]" emacs-forward-word
|
|
|
|
|
|
|
|
# Kill to the beginning of the line.
|
|
|
|
[[ -n "$keyinfo[Escape]" ]] && \
|
|
|
|
for key in "$keyinfo[Escape]"{K,k}; \
|
|
|
|
bindkey -M emacs "$key" backward-kill-line
|
2011-08-14 21:14:57 -04:00
|
|
|
|
2012-03-18 20:45:59 -04:00
|
|
|
# Redo.
|
|
|
|
[[ -n "$keyinfo[Escape]" ]] && \
|
|
|
|
bindkey -M emacs "$keyinfo[Escape]_" redo
|
2011-08-14 21:14:57 -04:00
|
|
|
|
2012-03-18 20:45:59 -04:00
|
|
|
# Search previous character.
|
|
|
|
[[ -n "$keyinfo[Control]" ]] && \
|
|
|
|
bindkey -M emacs "$keyinfo[Control]X$keyinfo[Control]B" vi-find-prev-char
|
2012-03-18 11:51:02 -04:00
|
|
|
|
2012-03-18 20:45:59 -04:00
|
|
|
# Match bracket.
|
|
|
|
[[ -n "$keyinfo[Control]" ]] && \
|
|
|
|
bindkey -M emacs "$keyinfo[Control]X$keyinfo[Control]]" vi-match-bracket
|
2011-08-14 21:14:57 -04:00
|
|
|
|
2012-03-18 20:45:59 -04:00
|
|
|
# Edit command in an external editor.
|
|
|
|
[[ -n "$keyinfo[Control]" ]] && \
|
|
|
|
bindkey -M emacs "$keyinfo[Control]X$keyinfo[Control]E" edit-command-line
|
2011-08-14 21:14:57 -04:00
|
|
|
|
2012-03-20 20:33:36 -04:00
|
|
|
# Bind to the history substring search plugin if enabled;
|
2012-03-18 20:45:59 -04:00
|
|
|
# otherwise, bind to built-in Zsh history search.
|
2012-03-20 20:33:36 -04:00
|
|
|
if (( $+plugins[(er)history-substring-search] )); then
|
|
|
|
[[ -n "$keyinfo[Control]" ]] && \
|
|
|
|
bindkey -M emacs "$keyinfo[Control]P" history-substring-search-up
|
|
|
|
[[ -n "$keyinfo[Control]" ]] && \
|
|
|
|
bindkey -M emacs "$keyinfo[Control]N" history-substring-search-down
|
|
|
|
else
|
|
|
|
[[ -n "$keyinfo[Control]" ]] && \
|
|
|
|
bindkey -M emacs "$keyinfo[Control]P" up-line-or-history
|
|
|
|
[[ -n "$keyinfo[Control]" ]] && \
|
|
|
|
bindkey -M emacs "$keyinfo[Control]N" down-line-or-history
|
|
|
|
fi
|
|
|
|
|
2012-03-18 20:45:59 -04:00
|
|
|
if (( $+widgets[history-incremental-pattern-search-backward] )); then
|
|
|
|
[[ -n "$keyinfo[Control]" ]] && \
|
|
|
|
bindkey -M emacs "$keyinfo[Control]R" \
|
|
|
|
history-incremental-pattern-search-backward
|
|
|
|
[[ -n "$keyinfo[Control]" ]] && \
|
|
|
|
bindkey -M emacs "$keyinfo[Control]S" \
|
|
|
|
history-incremental-pattern-search-forward
|
|
|
|
else
|
|
|
|
[[ -n "$keyinfo[Control]" ]] && \
|
|
|
|
bindkey -M emacs "$keyinfo[Control]R" \
|
|
|
|
history-incremental-search-backward
|
|
|
|
[[ -n "$keyinfo[Control]" ]] && \
|
|
|
|
bindkey -M emacs "$keyinfo[Control]S" \
|
|
|
|
history-incremental-search-forward
|
|
|
|
fi
|
2011-08-14 21:14:57 -04:00
|
|
|
|
2012-03-18 20:45:59 -04:00
|
|
|
# Vi key bindings.
|
2011-06-01 02:48:26 -04:00
|
|
|
|
2012-03-18 20:45:59 -04:00
|
|
|
# Edit command in an external editor.
|
|
|
|
bindkey -M vicmd "v" edit-command-line
|
2011-07-30 01:54:11 -04:00
|
|
|
|
2012-03-18 20:45:59 -04:00
|
|
|
# Show cursor position.
|
|
|
|
bindkey -M vicmd "ga" what-cursor-position
|
2011-07-30 01:54:11 -04:00
|
|
|
|
2012-03-18 20:45:59 -04:00
|
|
|
# Undo/Redo
|
|
|
|
bindkey -M vicmd "u" undo
|
|
|
|
[[ -n "$keyinfo[Control]" ]] && \
|
|
|
|
bindkey -M vicmd "$keyinfo[Control]R" redo
|
2011-07-30 01:54:11 -04:00
|
|
|
|
2012-03-18 20:45:59 -04:00
|
|
|
# Switch to command mode.
|
|
|
|
bindkey -M viins "jk" vi-cmd-mode
|
|
|
|
bindkey -M viins "kj" vi-cmd-mode
|
2011-07-30 01:54:11 -04:00
|
|
|
|
2012-03-18 20:45:59 -04:00
|
|
|
# History
|
|
|
|
bindkey -M vicmd "gg" beginning-of-history
|
|
|
|
bindkey -M vicmd "G" end-of-history
|
2011-07-30 01:54:11 -04:00
|
|
|
|
2012-03-20 20:33:36 -04:00
|
|
|
# Bind to the history substring search plugin if enabled;
|
2012-03-18 20:45:59 -04:00
|
|
|
# otherwise, bind to built-in Zsh history search.
|
|
|
|
if (( $+plugins[(er)history-substring-search] )); then
|
|
|
|
bindkey -M vicmd "k" history-substring-search-up
|
|
|
|
bindkey -M vicmd "j" history-substring-search-down
|
2012-01-24 23:39:51 -05:00
|
|
|
else
|
2012-03-18 20:45:59 -04:00
|
|
|
bindkey -M vicmd "k" up-line-or-history
|
|
|
|
bindkey -M vicmd "j" down-line-or-history
|
2011-07-30 01:54:11 -04:00
|
|
|
fi
|
2011-12-27 02:27:34 -05:00
|
|
|
|
2012-03-18 20:45:59 -04:00
|
|
|
if (( $+widgets[history-incremental-pattern-search-backward] )); then
|
|
|
|
bindkey -M vicmd "?" history-incremental-pattern-search-backward
|
|
|
|
bindkey -M vicmd "/" history-incremental-pattern-search-forward
|
|
|
|
else
|
|
|
|
bindkey -M vicmd "?" history-incremental-search-backward
|
|
|
|
bindkey -M vicmd "/" history-incremental-search-forward
|
|
|
|
fi
|
2011-12-27 02:27:34 -05:00
|
|
|
|
2012-03-18 20:45:59 -04:00
|
|
|
# Emacs and Vi key bindings.
|
|
|
|
for keymap in 'emacs' 'viins'; do
|
|
|
|
[[ -n "$keyinfo[Home]" ]] && \
|
|
|
|
bindkey -M "$keymap" "$keyinfo[Home]" beginning-of-line
|
|
|
|
[[ -n "$keyinfo[End]" ]] && \
|
|
|
|
bindkey -M "$keymap" "$keyinfo[End]" end-of-line
|
|
|
|
|
|
|
|
[[ -n "$keyinfo[Insert]" ]] && \
|
|
|
|
bindkey -M "$keymap" "$keyinfo[Insert]" overwrite-mode
|
|
|
|
[[ -n "$keyinfo[Delete]" ]] && \
|
|
|
|
bindkey -M "$keymap" "$keyinfo[Delete]" delete-char
|
|
|
|
[[ -n "$keyinfo[Backspace]" ]] && \
|
|
|
|
bindkey -M "$keymap" "$keyinfo[Backspace]" backward-delete-char && \
|
|
|
|
stty erase "$keyinfo[Backspace]"
|
|
|
|
|
|
|
|
[[ -n "$keyinfo[Left]" ]] && \
|
|
|
|
bindkey -M "$keymap" "$keyinfo[Left]" backward-char
|
|
|
|
[[ -n "$keyinfo[Right]" ]] && \
|
|
|
|
bindkey -M "$keymap" "$keyinfo[Right]" forward-char
|
|
|
|
|
|
|
|
# Expand history on space.
|
|
|
|
bindkey -M "$keymap" ' ' magic-space
|
2011-08-14 21:14:57 -04:00
|
|
|
|
2012-03-18 20:45:59 -04:00
|
|
|
if (( $+plugins[(er)history-substring-search] )); then
|
|
|
|
[[ -n "$keyinfo[Up]" ]] && \
|
|
|
|
bindkey -M "$keymap" "$keyinfo[Up]" history-substring-search-up
|
|
|
|
[[ -n "$keyinfo[Down]" ]] && \
|
|
|
|
bindkey -M "$keymap" "$keyinfo[Down]" history-substring-search-down
|
|
|
|
else
|
|
|
|
[[ -n "$keyinfo[Up]" ]] && \
|
|
|
|
bindkey -M "$keymap" "$keyinfo[Up]" up-line-or-history
|
|
|
|
[[ -n "$keyinfo[Down]" ]] && \
|
|
|
|
bindkey -M "$keymap" "$keyinfo[Down]" down-line-or-history
|
|
|
|
fi
|
2011-08-14 21:14:57 -04:00
|
|
|
|
2012-03-18 20:45:59 -04:00
|
|
|
# Clear screen.
|
2011-12-27 02:27:34 -05:00
|
|
|
[[ -n "$keyinfo[Control]" ]] && \
|
2012-03-18 20:45:59 -04:00
|
|
|
bindkey -M "$keymap" "$keyinfo[Control]L" clear-screen
|
2011-07-30 01:54:11 -04:00
|
|
|
|
2012-03-18 20:45:59 -04:00
|
|
|
# Expand command name to full path.
|
|
|
|
[[ -n "$keyinfo[Escape]" ]] && \
|
|
|
|
for key in "$keyinfo[Escape]"{E,e}; \
|
|
|
|
bindkey -M "$keymap" "$key" expand-cmd-path
|
2011-08-14 21:14:57 -04:00
|
|
|
|
2012-03-18 20:45:59 -04:00
|
|
|
# Duplicate the previous word.
|
|
|
|
[[ -n "$keyinfo[Escape]" ]] && \
|
|
|
|
for key in "$keyinfo[Escape]"{M,m}; \
|
|
|
|
bindkey -M "$keymap" "$key" copy-prev-shell-word
|
2011-08-14 21:14:57 -04:00
|
|
|
|
2012-03-18 20:45:59 -04:00
|
|
|
# Use a more flexible push-line.
|
|
|
|
[[ -n "$keyinfo[Control]" && -n "$keyinfo[Escape]" ]] && \
|
|
|
|
for key in "$keyinfo[Control]Q" "$keyinfo[Escape]"{q,Q}; \
|
|
|
|
bindkey -M "$keymap" "$key" push-line-or-edit
|
2011-08-14 21:14:57 -04:00
|
|
|
|
2012-03-18 20:45:59 -04:00
|
|
|
# Bind Shift + Tab to go to the previous menu item.
|
|
|
|
[[ -n "$keyinfo[BackTab]" ]] && \
|
|
|
|
bindkey -M "$keymap" "$keyinfo[BackTab]" reverse-menu-complete
|
2011-08-14 21:14:57 -04:00
|
|
|
|
2012-03-18 20:45:59 -04:00
|
|
|
# Complete in the middle of word.
|
|
|
|
[[ -n "$keyinfo[Control]" ]] && \
|
|
|
|
bindkey -M "$keymap" "$keyinfo[Control]I" expand-or-complete-prefix
|
2011-07-30 01:54:11 -04:00
|
|
|
|
2012-03-18 21:11:49 -04:00
|
|
|
# Expand .... to ../..
|
2012-03-18 20:45:59 -04:00
|
|
|
if zstyle -t ':omz:editor' dot-expansion; then
|
2012-03-18 21:11:49 -04:00
|
|
|
bindkey -M "$keymap" "." expand-dot-to-parent-directory-path
|
2012-03-18 20:45:59 -04:00
|
|
|
fi
|
2011-08-14 21:14:57 -04:00
|
|
|
|
2012-03-18 20:45:59 -04:00
|
|
|
# Display an indicator when completing.
|
|
|
|
[[ -n "$keyinfo[Control]" ]] && \
|
|
|
|
bindkey -M "$keymap" "$keyinfo[Control]I" \
|
2012-03-20 20:52:42 -04:00
|
|
|
expand-or-complete-with-indicator
|
2011-06-01 02:48:26 -04:00
|
|
|
|
2012-03-18 20:45:59 -04:00
|
|
|
# Insert 'sudo ' at the beginning of the line.
|
|
|
|
[[ -n "$keyinfo[Control]" ]] && \
|
|
|
|
bindkey -M "$keymap" "$keyinfo[Control]X$keyinfo[Control]S" prepend-sudo
|
|
|
|
done
|
2012-03-18 19:04:41 -04:00
|
|
|
|
2012-03-18 21:11:49 -04:00
|
|
|
# Do not expand .... to ../.. during incremental search.
|
|
|
|
if zstyle -t ':omz:editor' dot-expansion; then
|
|
|
|
bindkey -M isearch . self-insert 2> /dev/null
|
|
|
|
fi
|
|
|
|
|
2012-03-18 20:45:59 -04:00
|
|
|
# Set the key layout.
|
|
|
|
zstyle -s ':omz:editor' keymap 'keymap'
|
|
|
|
if [[ "$keymap" == (emacs|) ]]; then
|
|
|
|
bindkey -e
|
|
|
|
elif [[ "$keymap" == vi ]]; then
|
|
|
|
bindkey -v
|
|
|
|
else
|
|
|
|
print "omz: invalid keymap: $keymap" >&2
|
|
|
|
fi
|
2012-03-18 19:20:00 -04:00
|
|
|
|
2012-03-18 20:45:59 -04:00
|
|
|
unset keymap
|
2012-03-18 09:35:47 -04:00
|
|
|
unset key
|
|
|
|
|