2012-02-01 04:37:51 +00:00
|
|
|
|
#
|
2012-04-09 21:24:17 +00:00
|
|
|
|
# Sets key bindings.
|
2012-02-01 04:37:51 +00:00
|
|
|
|
#
|
|
|
|
|
# Authors:
|
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
|
|
|
#
|
|
|
|
|
|
2012-07-23 19:00:44 +00:00
|
|
|
|
# Return if requirements are not found.
|
2011-10-11 01:25:53 +00:00
|
|
|
|
if [[ "$TERM" == 'dumb' ]]; then
|
2012-03-28 16:19:53 +00:00
|
|
|
|
return 1
|
2011-10-11 01:25:53 +00:00
|
|
|
|
fi
|
|
|
|
|
|
2012-08-04 18:48:32 +00:00
|
|
|
|
#
|
|
|
|
|
# Options
|
|
|
|
|
#
|
|
|
|
|
|
2011-07-30 05:54:11 +00:00
|
|
|
|
# Beep on error in line editor.
|
2011-10-11 02:16:06 +00:00
|
|
|
|
setopt BEEP
|
2009-09-22 23:49:00 +00:00
|
|
|
|
|
2012-08-04 18:48:32 +00:00
|
|
|
|
#
|
|
|
|
|
# Variables
|
|
|
|
|
#
|
|
|
|
|
|
2013-04-25 23:05:07 +00:00
|
|
|
|
# Treat these characters as part of a word.
|
|
|
|
|
WORDCHARS='*?_-.[]~&;!#$%^(){}<>'
|
|
|
|
|
|
2011-07-30 05:54:11 +00:00
|
|
|
|
# Use human-friendly identifiers.
|
2011-09-28 02:08:29 +00:00
|
|
|
|
zmodload zsh/terminfo
|
2012-04-11 03:12:04 +00:00
|
|
|
|
typeset -gA key_info
|
2012-04-09 22:40:03 +00:00
|
|
|
|
key_info=(
|
2014-10-09 17:04:30 +00:00
|
|
|
|
'Control' '\C-'
|
|
|
|
|
'ControlLeft' '\e[1;5D \e[5D \e\e[D \eOd'
|
|
|
|
|
'ControlRight' '\e[1;5C \e[5C \e\e[C \eOc'
|
|
|
|
|
'Escape' '\e'
|
|
|
|
|
'Meta' '\M-'
|
|
|
|
|
'Backspace' "^?"
|
|
|
|
|
'Delete' "^[[3~"
|
|
|
|
|
'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]"
|
|
|
|
|
'Insert' "$terminfo[kich1]"
|
|
|
|
|
'Home' "$terminfo[khome]"
|
|
|
|
|
'PageUp' "$terminfo[kpp]"
|
|
|
|
|
'End' "$terminfo[kend]"
|
|
|
|
|
'PageDown' "$terminfo[knp]"
|
|
|
|
|
'Up' "$terminfo[kcuu1]"
|
|
|
|
|
'Left' "$terminfo[kcub1]"
|
|
|
|
|
'Down' "$terminfo[kcud1]"
|
|
|
|
|
'Right' "$terminfo[kcuf1]"
|
|
|
|
|
'BackTab' "$terminfo[kcbt]"
|
2011-07-30 05:54:11 +00:00
|
|
|
|
)
|
2009-09-23 00:18:15 +00:00
|
|
|
|
|
2013-01-29 19:13:14 +00:00
|
|
|
|
# Set empty $key_info values to an invalid UTF-8 sequence to induce silent
|
|
|
|
|
# bindkey failure.
|
2012-09-25 21:27:16 +00:00
|
|
|
|
for key in "${(k)key_info[@]}"; do
|
|
|
|
|
if [[ -z "$key_info[$key]" ]]; then
|
2014-10-07 03:36:10 +00:00
|
|
|
|
key_info[$key]='<27>'
|
2012-03-26 19:22:53 +00:00
|
|
|
|
fi
|
|
|
|
|
done
|
|
|
|
|
|
2012-09-25 21:31:46 +00:00
|
|
|
|
#
|
|
|
|
|
# External Editor
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
# Allow command line editing in an external editor.
|
|
|
|
|
autoload -Uz edit-command-line
|
|
|
|
|
zle -N edit-command-line
|
|
|
|
|
|
2012-08-04 18:48:32 +00:00
|
|
|
|
#
|
|
|
|
|
# Functions
|
|
|
|
|
#
|
|
|
|
|
|
2012-09-07 03:17:38 +00:00
|
|
|
|
# Exposes information about the Zsh Line Editor via the $editor_info associative
|
|
|
|
|
# array.
|
2012-04-11 03:12:04 +00:00
|
|
|
|
function editor-info {
|
|
|
|
|
# Clean up previous $editor_info.
|
|
|
|
|
unset editor_info
|
|
|
|
|
typeset -gA editor_info
|
|
|
|
|
|
2012-03-21 18:34:01 +00:00
|
|
|
|
if [[ "$KEYMAP" == 'vicmd' ]]; then
|
2012-10-02 01:50:30 +00:00
|
|
|
|
zstyle -s ':prezto:module:editor:info:keymap:alternate' format 'REPLY'
|
2012-04-11 03:12:04 +00:00
|
|
|
|
editor_info[keymap]="$REPLY"
|
2012-03-21 18:34:01 +00:00
|
|
|
|
else
|
2012-10-02 01:50:30 +00:00
|
|
|
|
zstyle -s ':prezto:module:editor:info:keymap:primary' format 'REPLY'
|
2012-04-11 03:12:04 +00:00
|
|
|
|
editor_info[keymap]="$REPLY"
|
2012-04-09 22:46:48 +00:00
|
|
|
|
|
2012-04-11 03:12:04 +00:00
|
|
|
|
if [[ "$ZLE_STATE" == *overwrite* ]]; then
|
2012-10-02 01:50:30 +00:00
|
|
|
|
zstyle -s ':prezto:module:editor:info:keymap:primary:overwrite' format 'REPLY'
|
2012-04-11 03:12:04 +00:00
|
|
|
|
editor_info[overwrite]="$REPLY"
|
|
|
|
|
else
|
2012-10-02 01:50:30 +00:00
|
|
|
|
zstyle -s ':prezto:module:editor:info:keymap:primary:insert' format 'REPLY'
|
2012-04-11 03:12:04 +00:00
|
|
|
|
editor_info[overwrite]="$REPLY"
|
|
|
|
|
fi
|
|
|
|
|
fi
|
2012-04-09 22:46:48 +00:00
|
|
|
|
|
|
|
|
|
unset REPLY
|
|
|
|
|
|
2012-03-21 18:34:01 +00:00
|
|
|
|
zle reset-prompt
|
|
|
|
|
zle -R
|
2012-03-18 22:14:28 +00:00
|
|
|
|
}
|
2012-04-11 03:12:04 +00:00
|
|
|
|
zle -N editor-info
|
|
|
|
|
|
2014-01-10 00:58:14 +00:00
|
|
|
|
# Updates editor information when the keymap changes.
|
|
|
|
|
function zle-keymap-select {
|
|
|
|
|
zle editor-info
|
|
|
|
|
}
|
|
|
|
|
zle -N zle-keymap-select
|
|
|
|
|
|
|
|
|
|
# Enables terminal application mode and updates editor information.
|
|
|
|
|
function zle-line-init {
|
2012-10-17 16:39:10 +00:00
|
|
|
|
# The terminal must be in application mode when ZLE is active for $terminfo
|
|
|
|
|
# values to be valid.
|
2014-01-10 00:58:14 +00:00
|
|
|
|
if (( $+terminfo[smkx] )); then
|
|
|
|
|
# Enable terminal application mode.
|
|
|
|
|
echoti smkx
|
2012-10-17 16:43:48 +00:00
|
|
|
|
fi
|
2012-10-17 16:39:10 +00:00
|
|
|
|
|
|
|
|
|
# Update editor information.
|
2012-04-11 03:12:04 +00:00
|
|
|
|
zle editor-info
|
|
|
|
|
}
|
|
|
|
|
zle -N zle-line-init
|
|
|
|
|
|
2014-01-10 00:58:14 +00:00
|
|
|
|
# Disables terminal application mode and updates editor information.
|
|
|
|
|
function zle-line-finish {
|
|
|
|
|
# The terminal must be in application mode when ZLE is active for $terminfo
|
|
|
|
|
# values to be valid.
|
|
|
|
|
if (( $+terminfo[rmkx] )); then
|
|
|
|
|
# Disable terminal application mode.
|
|
|
|
|
echoti rmkx
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
# Update editor information.
|
|
|
|
|
zle editor-info
|
|
|
|
|
}
|
|
|
|
|
zle -N zle-line-finish
|
|
|
|
|
|
2012-04-11 03:12:04 +00:00
|
|
|
|
# Toggles emacs overwrite mode and updates editor information.
|
|
|
|
|
function overwrite-mode {
|
|
|
|
|
zle .overwrite-mode
|
|
|
|
|
zle editor-info
|
|
|
|
|
}
|
|
|
|
|
zle -N overwrite-mode
|
|
|
|
|
|
|
|
|
|
# Enters vi insert mode and updates editor information.
|
|
|
|
|
function vi-insert {
|
|
|
|
|
zle .vi-insert
|
|
|
|
|
zle editor-info
|
|
|
|
|
}
|
|
|
|
|
zle -N vi-insert
|
|
|
|
|
|
|
|
|
|
# Moves to the first non-blank character then enters vi insert mode and updates
|
|
|
|
|
# editor information.
|
|
|
|
|
function vi-insert-bol {
|
|
|
|
|
zle .vi-insert-bol
|
|
|
|
|
zle editor-info
|
|
|
|
|
}
|
|
|
|
|
zle -N vi-insert-bol
|
|
|
|
|
|
|
|
|
|
# Enters vi replace mode and updates editor information.
|
|
|
|
|
function vi-replace {
|
|
|
|
|
zle .vi-replace
|
|
|
|
|
zle editor-info
|
|
|
|
|
}
|
|
|
|
|
zle -N vi-replace
|
2012-03-18 22:14:28 +00:00
|
|
|
|
|
2012-03-19 01:11:49 +00:00
|
|
|
|
# Expands .... to ../..
|
2012-03-23 18:57:51 +00:00
|
|
|
|
function expand-dot-to-parent-directory-path {
|
2012-03-18 23:00:12 +00:00
|
|
|
|
if [[ $LBUFFER = *.. ]]; then
|
|
|
|
|
LBUFFER+='/..'
|
|
|
|
|
else
|
|
|
|
|
LBUFFER+='.'
|
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
zle -N expand-dot-to-parent-directory-path
|
|
|
|
|
|
|
|
|
|
# Displays an indicator when completing.
|
2012-03-23 18:57:51 +00:00
|
|
|
|
function expand-or-complete-with-indicator {
|
2012-03-18 23:00:12 +00:00
|
|
|
|
local indicator
|
2012-10-02 01:50:30 +00:00
|
|
|
|
zstyle -s ':prezto:module:editor:info:completing' format 'indicator'
|
2012-03-18 23:00:12 +00:00
|
|
|
|
print -Pn "$indicator"
|
2012-05-05 13:39:14 +00:00
|
|
|
|
zle expand-or-complete
|
2012-03-18 23:00:12 +00:00
|
|
|
|
zle redisplay
|
|
|
|
|
}
|
2012-03-21 00:52:42 +00:00
|
|
|
|
zle -N expand-or-complete-with-indicator
|
2012-03-18 23:00:12 +00:00
|
|
|
|
|
2012-03-18 23:20:00 +00:00
|
|
|
|
# Inserts 'sudo ' at the beginning of the line.
|
2012-03-23 18:57:51 +00:00
|
|
|
|
function prepend-sudo {
|
2012-03-18 23:20:00 +00:00
|
|
|
|
if [[ "$BUFFER" != su(do|)\ * ]]; then
|
|
|
|
|
BUFFER="sudo $BUFFER"
|
|
|
|
|
(( CURSOR += 5 ))
|
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
zle -N prepend-sudo
|
|
|
|
|
|
2012-03-27 12:40:00 +00:00
|
|
|
|
# Reset to default key bindings.
|
|
|
|
|
bindkey -d
|
|
|
|
|
|
2012-08-04 18:48:32 +00:00
|
|
|
|
#
|
|
|
|
|
# Emacs Key Bindings
|
|
|
|
|
#
|
|
|
|
|
|
2014-10-09 17:04:30 +00:00
|
|
|
|
for key in "$key_info[Escape]"{B,b} "${(s: :)key_info[ControlLeft]}"
|
|
|
|
|
bindkey -M emacs "$key" emacs-backward-word
|
|
|
|
|
for key in "$key_info[Escape]"{F,f} "${(s: :)key_info[ControlRight]}"
|
|
|
|
|
bindkey -M emacs "$key" emacs-forward-word
|
2012-03-19 00:45:59 +00:00
|
|
|
|
|
|
|
|
|
# Kill to the beginning of the line.
|
2012-04-09 22:40:03 +00:00
|
|
|
|
for key in "$key_info[Escape]"{K,k}
|
2012-03-26 19:22:53 +00:00
|
|
|
|
bindkey -M emacs "$key" backward-kill-line
|
2011-08-15 01:14:57 +00:00
|
|
|
|
|
2012-03-19 00:45:59 +00:00
|
|
|
|
# Redo.
|
2012-04-09 22:40:03 +00:00
|
|
|
|
bindkey -M emacs "$key_info[Escape]_" redo
|
2011-08-15 01:14:57 +00:00
|
|
|
|
|
2012-03-19 00:45:59 +00:00
|
|
|
|
# Search previous character.
|
2012-04-09 22:40:03 +00:00
|
|
|
|
bindkey -M emacs "$key_info[Control]X$key_info[Control]B" vi-find-prev-char
|
2012-03-18 15:51:02 +00:00
|
|
|
|
|
2012-03-19 00:45:59 +00:00
|
|
|
|
# Match bracket.
|
2012-04-09 22:40:03 +00:00
|
|
|
|
bindkey -M emacs "$key_info[Control]X$key_info[Control]]" vi-match-bracket
|
2011-08-15 01:14:57 +00:00
|
|
|
|
|
2012-03-19 00:45:59 +00:00
|
|
|
|
# Edit command in an external editor.
|
2012-04-09 22:40:03 +00:00
|
|
|
|
bindkey -M emacs "$key_info[Control]X$key_info[Control]E" edit-command-line
|
2011-08-15 01:14:57 +00:00
|
|
|
|
|
2012-03-19 00:45:59 +00:00
|
|
|
|
if (( $+widgets[history-incremental-pattern-search-backward] )); then
|
2012-04-09 22:40:03 +00:00
|
|
|
|
bindkey -M emacs "$key_info[Control]R" \
|
2012-03-26 19:22:53 +00:00
|
|
|
|
history-incremental-pattern-search-backward
|
2012-04-09 22:40:03 +00:00
|
|
|
|
bindkey -M emacs "$key_info[Control]S" \
|
2012-03-26 19:22:53 +00:00
|
|
|
|
history-incremental-pattern-search-forward
|
2012-03-19 00:45:59 +00:00
|
|
|
|
fi
|
2011-08-15 01:14:57 +00:00
|
|
|
|
|
2012-08-04 18:48:32 +00:00
|
|
|
|
#
|
|
|
|
|
# Vi Key Bindings
|
|
|
|
|
#
|
2011-06-01 06:48:26 +00:00
|
|
|
|
|
2012-03-19 00:45:59 +00:00
|
|
|
|
# Edit command in an external editor.
|
|
|
|
|
bindkey -M vicmd "v" edit-command-line
|
2011-07-30 05:54:11 +00:00
|
|
|
|
|
2012-03-19 00:45:59 +00:00
|
|
|
|
# Undo/Redo
|
|
|
|
|
bindkey -M vicmd "u" undo
|
2012-04-09 22:40:03 +00:00
|
|
|
|
bindkey -M vicmd "$key_info[Control]R" redo
|
2011-07-30 05:54:11 +00:00
|
|
|
|
|
2012-03-19 00:45:59 +00: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 07:27:34 +00:00
|
|
|
|
|
2012-08-04 18:48:32 +00:00
|
|
|
|
#
|
|
|
|
|
# Emacs and Vi Key Bindings
|
|
|
|
|
#
|
|
|
|
|
|
2012-03-19 00:45:59 +00:00
|
|
|
|
for keymap in 'emacs' 'viins'; do
|
2012-04-09 22:40:03 +00:00
|
|
|
|
bindkey -M "$keymap" "$key_info[Home]" beginning-of-line
|
|
|
|
|
bindkey -M "$keymap" "$key_info[End]" end-of-line
|
2012-03-26 19:22:53 +00:00
|
|
|
|
|
2012-04-09 22:40:03 +00:00
|
|
|
|
bindkey -M "$keymap" "$key_info[Insert]" overwrite-mode
|
|
|
|
|
bindkey -M "$keymap" "$key_info[Delete]" delete-char
|
|
|
|
|
bindkey -M "$keymap" "$key_info[Backspace]" backward-delete-char
|
2012-03-26 19:22:53 +00:00
|
|
|
|
|
2012-04-09 22:40:03 +00:00
|
|
|
|
bindkey -M "$keymap" "$key_info[Left]" backward-char
|
|
|
|
|
bindkey -M "$keymap" "$key_info[Right]" forward-char
|
2012-03-19 00:45:59 +00:00
|
|
|
|
|
|
|
|
|
# Expand history on space.
|
|
|
|
|
bindkey -M "$keymap" ' ' magic-space
|
2011-08-15 01:14:57 +00:00
|
|
|
|
|
2012-03-19 00:45:59 +00:00
|
|
|
|
# Clear screen.
|
2012-04-09 22:40:03 +00:00
|
|
|
|
bindkey -M "$keymap" "$key_info[Control]L" clear-screen
|
2011-07-30 05:54:11 +00:00
|
|
|
|
|
2012-03-19 00:45:59 +00:00
|
|
|
|
# Expand command name to full path.
|
2012-04-09 22:40:03 +00:00
|
|
|
|
for key in "$key_info[Escape]"{E,e}
|
2012-03-26 19:22:53 +00:00
|
|
|
|
bindkey -M "$keymap" "$key" expand-cmd-path
|
2011-08-15 01:14:57 +00:00
|
|
|
|
|
2012-03-19 00:45:59 +00:00
|
|
|
|
# Duplicate the previous word.
|
2012-04-09 22:40:03 +00:00
|
|
|
|
for key in "$key_info[Escape]"{M,m}
|
2012-03-26 19:22:53 +00:00
|
|
|
|
bindkey -M "$keymap" "$key" copy-prev-shell-word
|
2011-08-15 01:14:57 +00:00
|
|
|
|
|
2012-03-19 00:45:59 +00:00
|
|
|
|
# Use a more flexible push-line.
|
2012-04-09 22:40:03 +00:00
|
|
|
|
for key in "$key_info[Control]Q" "$key_info[Escape]"{q,Q}
|
2012-03-26 19:22:53 +00:00
|
|
|
|
bindkey -M "$keymap" "$key" push-line-or-edit
|
2011-08-15 01:14:57 +00:00
|
|
|
|
|
2012-03-19 00:45:59 +00:00
|
|
|
|
# Bind Shift + Tab to go to the previous menu item.
|
2012-04-09 22:40:03 +00:00
|
|
|
|
bindkey -M "$keymap" "$key_info[BackTab]" reverse-menu-complete
|
2011-08-15 01:14:57 +00:00
|
|
|
|
|
2012-03-19 00:45:59 +00:00
|
|
|
|
# Complete in the middle of word.
|
2012-05-05 13:39:14 +00:00
|
|
|
|
bindkey -M "$keymap" "$key_info[Control]I" expand-or-complete
|
2011-07-30 05:54:11 +00:00
|
|
|
|
|
2012-03-19 01:11:49 +00:00
|
|
|
|
# Expand .... to ../..
|
2012-09-03 20:08:39 +00:00
|
|
|
|
if zstyle -t ':prezto:module:editor' dot-expansion; then
|
2012-03-19 01:11:49 +00:00
|
|
|
|
bindkey -M "$keymap" "." expand-dot-to-parent-directory-path
|
2012-03-19 00:45:59 +00:00
|
|
|
|
fi
|
2011-08-15 01:14:57 +00:00
|
|
|
|
|
2012-03-19 00:45:59 +00:00
|
|
|
|
# Display an indicator when completing.
|
2012-04-09 22:40:03 +00:00
|
|
|
|
bindkey -M "$keymap" "$key_info[Control]I" \
|
2012-03-26 19:22:53 +00:00
|
|
|
|
expand-or-complete-with-indicator
|
2011-06-01 06:48:26 +00:00
|
|
|
|
|
2012-03-19 00:45:59 +00:00
|
|
|
|
# Insert 'sudo ' at the beginning of the line.
|
2012-04-09 22:40:03 +00:00
|
|
|
|
bindkey -M "$keymap" "$key_info[Control]X$key_info[Control]S" prepend-sudo
|
2012-03-19 00:45:59 +00:00
|
|
|
|
done
|
2012-03-18 23:04:41 +00:00
|
|
|
|
|
2012-03-19 01:11:49 +00:00
|
|
|
|
# Do not expand .... to ../.. during incremental search.
|
2012-09-03 20:08:39 +00:00
|
|
|
|
if zstyle -t ':prezto:module:editor' dot-expansion; then
|
2012-03-19 01:11:49 +00:00
|
|
|
|
bindkey -M isearch . self-insert 2> /dev/null
|
|
|
|
|
fi
|
|
|
|
|
|
2012-08-04 18:48:32 +00:00
|
|
|
|
#
|
|
|
|
|
# Layout
|
|
|
|
|
#
|
|
|
|
|
|
2012-03-19 00:45:59 +00:00
|
|
|
|
# Set the key layout.
|
2013-05-18 23:23:03 +00:00
|
|
|
|
zstyle -s ':prezto:module:editor' key-bindings 'key_bindings'
|
|
|
|
|
if [[ "$key_bindings" == (emacs|) ]]; then
|
2012-03-19 00:45:59 +00:00
|
|
|
|
bindkey -e
|
2013-05-18 23:23:03 +00:00
|
|
|
|
elif [[ "$key_bindings" == vi ]]; then
|
2012-03-19 00:45:59 +00:00
|
|
|
|
bindkey -v
|
|
|
|
|
else
|
2013-05-18 23:23:03 +00:00
|
|
|
|
print "prezto: editor: invalid key bindings: $key_bindings" >&2
|
2012-03-19 00:45:59 +00:00
|
|
|
|
fi
|
2012-03-18 23:20:00 +00:00
|
|
|
|
|
2013-05-18 23:23:03 +00:00
|
|
|
|
unset key{,map,bindings}
|