15 lines
370 B
15 lines
370 B
## arrow up, down for history search
|
|
"\e[A":history-search-backward
|
|
"\e[B":history-search-forward
|
|
|
|
|
|
# mappings for Ctrl-left-arrow and Ctrl-right-arrow for word moving
|
|
"\e[1;5C": forward-word
|
|
"\e[1;5D": backward-word
|
|
"\e[5C": forward-word
|
|
"\e[5D": backward-word
|
|
"\e\e[C": forward-word
|
|
"\e\e[D": backward-word
|
|
|
|
## completion case-insentivive
|
|
set completion-ignore-case on
|