You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
465 B

1 year ago
5 years ago
1 year ago
1 year ago
  1. ## completion case-insentivive
  2. set completion-ignore-case on
  3. ## ARROW up, down for history search
  4. "\e[A":history-search-backward
  5. "\e[B":history-search-forward
  6. # CTRL + Right, Left for word suppressing
  7. "\e[1;5C": forward-word
  8. "\e[1;5D": backward-word
  9. # ALT + BACKSPACE for left line suppressing
  10. "\e[3;3~": kill-line
  11. # ALT + DELETE for right line suppressing
  12. "\e\C-?": backward-kill-line
  13. # CTRL + BACKSPACE for left word suppressing
  14. "\C-H": backward-kill-word