dot/vm: Make `vm-reply-ignored-addresses' patterns match correctly.
[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
16set 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