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
20 lines
465 B
## completion case-insentivive
|
|
set completion-ignore-case on
|
|
|
|
## ARROW up, down for history search
|
|
"\e[A":history-search-backward
|
|
"\e[B":history-search-forward
|
|
|
|
|
|
# CTRL + Right, Left for word suppressing
|
|
"\e[1;5C": forward-word
|
|
"\e[1;5D": backward-word
|
|
|
|
# ALT + BACKSPACE for left line suppressing
|
|
"\e[3;3~": kill-line
|
|
# ALT + DELETE for right line suppressing
|
|
"\e\C-?": backward-kill-line
|
|
|
|
# CTRL + BACKSPACE for left word suppressing
|
|
"\C-H": backward-kill-word
|
|
|