dot/inputrc: Wow, readline can do bracketd-paste.
[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 enable-bracketed-paste on
13set colored-completion-prefix off
14set colored-stats on
15set enable-bracketed-paste on
16
17## Missing bindings
18"\e\e[C": forward-word
19"\e\e[D": backward-word
20"\e ": "\e\\ "
21
22## Because the default bindings are just too weird.
23"\en": history-search-forward
24"\ep": history-search-backward
25"\C-u": kill-whole-line
26
27## Better cursor motion.
28"\e\C-b": shell-backward-word
29"\e\C-d": shell-kill-word
30"\e\C-f": shell-forward-word
31"\C-w": shell-backward-kill-word
32"\e\C-w": kill-region