dot/inputrc: Miscellaneous tweaks I didn't know about before.
[profile] / dot / inputrc
... / ...
CommitLineData
1### bash and friends, readline configuration
2
3## Eight-bit sensibleness
4set input-meta on
5set output-meta on
6set convert-meta off
7
8## Other twiddles.
9set bell-style none
10set bind-tty-special-chars off
11set blink-matching-paren on
12set colored-completion-prefix off
13set colored-stats on
14set enable-bracketed-paste on
15
16## Missing bindings
17"\e\e[C": forward-word
18"\e\e[D": backward-word
19"\e ": "\e\\ "
20
21## Because the default bindings are just too weird.
22"\en": history-search-forward
23"\ep": history-search-backward
24
25## Better cursor motion.
26"\e\C-b": shell-backward-word
27"\e\C-d": shell-kill-word
28"\e\C-f": shell-forward-word
29"\C-w": shell-backward-kill-word
30"\e\C-w": kill-region