24 lines
670 B
Plaintext
24 lines
670 B
Plaintext
# ctrl-arrows jump between words / begin/end line
|
|
"\e[1;5D": shell-backward-word # seperate by spaces instead of: backward-word, forward-word
|
|
"\e[1;5C": shell-forward-word #
|
|
|
|
# start bash recursive search from cursor using up/down keys
|
|
# prevents pressing up-key zillion times in bash/mysql/etc
|
|
"\e[A": history-search-backward
|
|
"\e[B": history-search-forward
|
|
"\C-R": history-search-forward
|
|
|
|
|
|
# always show completion
|
|
#set completion-query-items 1000
|
|
TAB:menu-complete
|
|
|
|
"\C-d":kill-word
|
|
|
|
# completion improv
|
|
# for readability: put / after directory names and * after programs:
|
|
set visible-stats on
|
|
|
|
"\e[1;5B": beginning-of-line
|
|
"\e[1;5A": end-of-line
|