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