#!/usr/bin/env zsh # # Much of this was stolen from zsh4humans # https://github.com/romkatv/zsh4humans/blob/ced34c2bc8432be535acf0e513e17edfcf240ee3/fn/-z4h-init-zle # Those parts (mostly the for-loop) are (c) 2020 Roman Perepelitsa (MIT Licence) PROMPT_EOL_MARK='%K{red} %k' # mark the missing \n at the end of a comand output with a red block WORDCHARS='' # only alphanums make up words in word-based zle widgets ZLE_REMOVE_SUFFIX_CHARS='' # don't eat space when typing '|' after a tab completion KEYTIMEOUT=4 # wait wait KEYTIMEOUT x 10ms for the continuation of a key sequence #zle_highlight=('paste:none') # disable highlighting of text pasted into the command line # Delete all existing keymaps and reset to the default state. bindkey -d bindkey -e # # Rebind keys from setups which produce non-default key codes # local keymap for keymap in emacs viins vicmd; do # If NumLock is off, translate keys to make them appear the same as with NumLock on. bindkey -M $keymap -s '^[OM' '^M' # enter bindkey -M $keymap -s '^[OX' '=' bindkey -M $keymap -s '^[Oj' '*' bindkey -M $keymap -s '^[Ok' '+' bindkey -M $keymap -s '^[Ol' '+' bindkey -M $keymap -s '^[Om' '-' bindkey -M $keymap -s '^[On' '.' bindkey -M $keymap -s '^[Oo' '/' bindkey -M $keymap -s '^[Op' '0' bindkey -M $keymap -s '^[Oq' '1' bindkey -M $keymap -s '^[Or' '2' bindkey -M $keymap -s '^[Os' '3' bindkey -M $keymap -s '^[Ot' '4' bindkey -M $keymap -s '^[Ou' '5' bindkey -M $keymap -s '^[Ov' '6' bindkey -M $keymap -s '^[Ow' '7' bindkey -M $keymap -s '^[Ox' '8' bindkey -M $keymap -s '^[Oy' '9' # If someone switches our terminal to application mode (smkx), translate keys to make # them appear the same as in raw mode (rmkx). bindkey -M $keymap -s '^[OA' '^[[A' # up bindkey -M $keymap -s '^[OB' '^[[B' # down bindkey -M $keymap -s '^[OD' '^[[D' # left bindkey -M $keymap -s '^[OC' '^[[C' # right bindkey -M $keymap -s '^[OH' '^[[H' # home bindkey -M $keymap -s '^[OF' '^[[F' # end # TTY sends different key codes. Translate them to xterm equivalents. # Missing: {ctrl,alt,shift}+{up,down,left,right,home,end}, {ctrl,alt}+delete. bindkey -M $keymap -s '^[[1~' '^[[H' # home bindkey -M $keymap -s '^[[4~' '^[[F' # end # Urxvt sends different key codes. Translate them to xterm equivalents. bindkey -M $keymap -s '^[[7~' '^[[H' # home bindkey -M $keymap -s '^[[8~' '^[[F' # end bindkey -M $keymap -s '^[Oa' '^[[1;5A' # ctrl+up bindkey -M $keymap -s '^[Ob' '^[[1;5B' # ctrl+down bindkey -M $keymap -s '^[Od' '^[[1;5D' # ctrl+left bindkey -M $keymap -s '^[Oc' '^[[1;5C' # ctrl+right bindkey -M $keymap -s '^[[7\^' '^[[1;5H' # ctrl+home bindkey -M $keymap -s '^[[8\^' '^[[1;5F' # ctrl+end bindkey -M $keymap -s '^[[3\^' '^[[3;5~' # ctrl+delete bindkey -M $keymap -s '^[^[[A' '^[[1;3A' # alt+up bindkey -M $keymap -s '^[^[[B' '^[[1;3B' # alt+down bindkey -M $keymap -s '^[^[[D' '^[[1;3D' # alt+left bindkey -M $keymap -s '^[^[[C' '^[[1;3C' # alt+right bindkey -M $keymap -s '^[^[[7~' '^[[1;3H' # alt+home bindkey -M $keymap -s '^[^[[8~' '^[[1;3F' # alt+end bindkey -M $keymap -s '^[^[[3~' '^[[3;3~' # alt+delete bindkey -M $keymap -s '^[[a' '^[[1;2A' # shift+up bindkey -M $keymap -s '^[[b' '^[[1;2B' # shift+down bindkey -M $keymap -s '^[[d' '^[[1;2D' # shift+left bindkey -M $keymap -s '^[[c' '^[[1;2C' # shift+right bindkey -M $keymap -s '^[[7$' '^[[1;2H' # shift+home bindkey -M $keymap -s '^[[8$' '^[[1;2F' # shift+end # Tmux sends different key codes. Translate them to xterm equivalents. bindkey -M $keymap -s '^[[1~' '^[[H' # home bindkey -M $keymap -s '^[[4~' '^[[F' # end bindkey -M $keymap -s '^[^[[A' '^[[1;3A' # alt+up bindkey -M $keymap -s '^[^[[B' '^[[1;3B' # alt+down bindkey -M $keymap -s '^[^[[D' '^[[1;3D' # alt+left bindkey -M $keymap -s '^[^[[C' '^[[1;3C' # alt+right bindkey -M $keymap -s '^[^[[1~' '^[[1;3H' # alt+home bindkey -M $keymap -s '^[^[[4~' '^[[1;3F' # alt+end bindkey -M $keymap -s '^[^[[3~' '^[[3;3~' # alt+delete # iTerm2 sends different key codes. Translate them to xterm equivalents. # Missing (depending on settings): ctrl+{up,down,left,right}, {ctrl,alt}+{delete,backspace}. bindkey -M $keymap -s '^[^[[A' '^[[1;3A' # alt+up bindkey -M $keymap -s '^[^[[B' '^[[1;3B' # alt+down bindkey -M $keymap -s '^[^[[D' '^[[1;3D' # alt+left bindkey -M $keymap -s '^[^[[C' '^[[1;3C' # alt+right bindkey -M $keymap -s '^[[1;9A' '^[[1;3A' # alt+up bindkey -M $keymap -s '^[[1;9B' '^[[1;3B' # alt+down bindkey -M $keymap -s '^[[1;9D' '^[[1;3D' # alt+left bindkey -M $keymap -s '^[[1;9C' '^[[1;3C' # alt+right bindkey -M $keymap -s '^[[1;9H' '^[[1;3H' # alt+home bindkey -M $keymap -s '^[[1;9F' '^[[1;3F' # alt+end # Special characters. bindkey -M $keymap -s 'ยค' '$' # make shift+4 on Linux behave as on macOS done # I rebind a lot of default keys under here. This is mostly for my own sanity. # TODO: Clean up this. There's no need to rebind keys. # Move cursor one char backward. bindkey '^[[D' backward-char # left (D) bindkey '^B' backward-char # ctrl+b (D) # tmux-key. # Move cursor one char forward. bindkey '^[[C' forward-char # right (D) bindkey '^F' forward-char # ctrl+f (D) # Move cursor one word backward bindkey '^[[1;3D' backward-word # alt-left # Move cursor one word wordward bindkey '^[[1;3C' forward-word # alt-right # Move cursor one line up or fetch the previous command from LOCAL history. bindkey '^P' up-line-or-history # ctrl+p (D) bindkey '^[[5~' up-line-or-history # pageup (D) # Move cursor one line down or fetch the next command from LOCAL history. bindkey '^N' down-line-or-history # ctrl+n (D) bindkey '^[[6~' down-line-or-history # pagedown (D) # Move cursor one line up, or search backward in history for first ford in buffer. Browse history backwards if empty buffer. bindkey '^[[A' up-line-or-search # up # Move cursor one line down, or search forward in history for first ford in buffer. Browse history forward if unedited buffer. bindkey '^[[B' down-line-or-search # down # Search for what's behind the cursor in history bindkey '^[[1;5A' history-search-backward # ctrl+up bindkey '^[[1;5B' history-search-forward # ctrl+down # Move cursor to the beginning of line. bindkey '^A' beginning-of-line # ctrl+a (D) bindkey '^[[H' beginning-of-line # home (D) bindkey '^[[1;5D' beginning-of-line # ctrl+left (D) # Move cursor to the end of line. bindkey '^E' end-of-line # ctrl+e (D) bindkey '^[[F' end-of-line # end (D) bindkey '^[[1;5C' end-of-line # ctrl+right (D) # Move cursor to the beginning of buffer. bindkey '^[[1;5H' beginning-of-buffer-or-history # ctrl+home bindkey '^[[1;3H' beginning-of-buffer-or-history # alt+home bindkey '^[<' beginning-of-buffer-or-history # UNKNOWN (D) # Move cursor to the end of buffer. bindkey '^[[1;5F' end-of-buffer-or-history # ctrl+end bindkey '^[[1;3F' end-of-buffer-or-history # alt+end bindkey '^[>' end-of-buffer-or-history # UNKNOWN (D) ## Move cursor one word forward. bindkey '^[[1;6C' forward-word # ctrl+shift+right bindkey '^[F' forward-word # alt+F (D) bindkey '^[f' forward-word # alt+f (D) ## Move cursor one word backward. bindkey '^[[1;6D' backward-word # ctrl+shift+left bindkey '^[b' backward-word # alt+b (D) bindkey '^[b' backward-word # alt+B (D) # Delete the character or list under the cursor. bindkey '^D' delete-char-or-list # ctrl+d (D) # Delete the character under the cursor. bindkey '^[[3~' delete-char # delete (D) # Delete the character behind the cursor bindkey '^H' backward-delete-char # ctrl+h (D) bindkey '^?' backward-delete-char # backspace # Delete next word. bindkey '^[d' kill-word # alt+d (D) bindkey '^[D' kill-word # alt+D (D) bindkey '^[[3;3~' kill-word # alt+del bindkey '^[[3;5~' kill-word # ctrl+del #bindkey '^[[3;6~' kill-word # ctrl+shift+del # Delete previous word. bindkey '^W' backward-kill-word # ctrl+w (D) bindkey '^[^?' backward-kill-word # alt+bs (D) bindkey '^[^H' backward-kill-word # ctrl+alt+bs (D) # Delete line before cursor. bindkey '^[k' backward-kill-line # alt+k bindkey '^[K' backward-kill-line # alt+K # Delete line after cursor bindkey '^K' kill-line # ctrl+k (D) # Delete whole line bindkey '^U' kill-whole-line # ctrl+u (D) # Delete all lines. bindkey '^X^K' kill-buffer # ctrl+x ctrl+k (D) # Undo and redo. bindkey '^[[Z' undo # shift+tab bindkey '^_' undo # UNKNOWN (D) bindkey '^X^U' undo # ctrl+x ctrl+u (D) bindkey '^Xu' undo # ctrl+x u (D) bindkey '^[/' redo # alt+/ # Clear screen bindkey '^L' clear-screen # ctrl+l (D) # Edit command-line bindkey '^X^E' edit-command-line # ctrl+x ctrl+e # cd into the parent directory. bindkey '^[[1;2A' _zle-cd-up # shift+up # cd into previous directory bindkey '^[[1;2D' _zle-cd-back # shift-left # do history-expansion on space bindkey ' ' magic-space # Test out escape as undefined bindkey '^[' undefined-key