key-bindings.zsh 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # TODO: Explain what some of this does..
  2. autoload -U compinit
  3. compinit -i
  4. bindkey -e
  5. bindkey '\ew' kill-region
  6. bindkey -s '\el' "ls\n"
  7. bindkey -s '\e.' "..\n"
  8. bindkey '^r' history-incremental-search-backward
  9. bindkey "^[[5~" up-line-or-history
  10. bindkey "^[[6~" down-line-or-history
  11. # make search up and down work, so partially type and hit up/down to find relevant stuff
  12. bindkey '^[[A' up-line-or-search
  13. bindkey '^[[B' down-line-or-search
  14. bindkey "^[[H" beginning-of-line
  15. bindkey "^[[1~" beginning-of-line
  16. bindkey "^[[F" end-of-line
  17. bindkey "^[[4~" end-of-line
  18. bindkey ' ' magic-space # also do history expansion on space
  19. bindkey '^[[Z' reverse-menu-complete
  20. # consider emacs keybindings:
  21. #bindkey -e ## emacs key bindings
  22. #
  23. #bindkey '^[[A' up-line-or-search
  24. #bindkey '^[[B' down-line-or-search
  25. #bindkey '^[^[[C' emacs-forward-word
  26. #bindkey '^[^[[D' emacs-backward-word
  27. #
  28. #bindkey -s '^X^Z' '%-^M'
  29. #bindkey '^[e' expand-cmd-path
  30. #bindkey '^[^I' reverse-menu-complete
  31. #bindkey '^X^N' accept-and-infer-next-history
  32. #bindkey '^W' kill-region
  33. #bindkey '^I' complete-word
  34. ## Fix weird sequence that rxvt produces
  35. #bindkey -s '^[[Z' '\t'
  36. #