2013-03-15 07:37:33 +00:00
|
|
|
|
#!/bin/zsh
|
|
|
|
|
|
|
|
|
|
exit(){builtin exit;}
|
|
|
|
|
zle -N q exit
|
|
|
|
|
|
|
|
|
|
bindkey -M vicmd ! edit-command-line-tmux
|
|
|
|
|
|
|
|
|
|
#unicode input
|
|
|
|
|
autoload -U insert-unicode-char
|
|
|
|
|
bindkey "u" insert-unicode-char
|
|
|
|
|
|
|
|
|
|
bindkey "^[[2~" yank # Insert
|
|
|
|
|
bindkey "^[[3~" delete-char # Del
|
|
|
|
|
bindkey "^[[5~" history-beginning-search-backward # PageUp
|
|
|
|
|
bindkey "^[[6~" history-beginning-search-forward # PageDown
|
|
|
|
|
bindkey "^[e" expand-cmd-path # C-e for expanding path of typed command.
|
|
|
|
|
bindkey "^[[A" up-line-or-search # Up arrow for back-history-search.
|
|
|
|
|
bindkey "^[[B" down-line-or-search # Down arrow for fwd-history-search.
|
|
|
|
|
bindkey " " magic-space # Do history expansion on space.
|
2013-03-22 12:41:39 +00:00
|
|
|
|
bindkey "" backward-delete-char #backspace
|
|
|
|
|
bindkey "" backward-delete-word #C-backspace
|
2013-03-15 07:37:33 +00:00
|
|
|
|
case "$TERM" in
|
|
|
|
|
*xterm*|(dt|k)term)
|
2013-03-22 12:41:39 +00:00
|
|
|
|
bindkey "[H" beginning-of-line # Pos1
|
|
|
|
|
bindkey "[F" end-of-line # End
|
2013-03-15 07:37:33 +00:00
|
|
|
|
;;
|
|
|
|
|
rxvt*|Eterm)
|
|
|
|
|
bindkey "^[[7~" beginning-of-line # Pos1
|
|
|
|
|
bindkey "^[[8~" end-of-line # End
|
|
|
|
|
;;
|
|
|
|
|
linux|screen*)
|
|
|
|
|
bindkey "[1~" beginning-of-line # Pos1
|
|
|
|
|
bindkey "[4~" end-of-line # End
|
|
|
|
|
;;
|
|
|
|
|
esac
|
|
|
|
|
bindkey "OA" up-line-or-history
|
|
|
|
|
bindkey "OB" down-line-or-history
|
|
|
|
|
bindkey "[1;5D" vi-backward-blank-word
|
|
|
|
|
bindkey "[1;5C" vi-forward-blank-word
|
|
|
|
|
#bindkey . rationalise-dot
|
|
|
|
|
|
|
|
|
|
bindkey "" push-line-or-edit
|