Initial import
[config/readline.git] / .inputrc
1 # Include system wide settings which are ignored
2 # by default if one has their own .inputrc
3 $include /etc/inputrc
4
5 # https://cirw.in/blog/bracketed-paste
6 set enable-bracketed-paste on
7
8 # Don't echo ^C etc (new in bash 4.1)
9 # Note this only works for the command line itself,
10 # not if already running a command.
11 set echo-control-characters off
12
13 # TAB completion stuff
14 TAB: complete
15 set show-all-if-ambiguous on
16
17 # Append a slash when completing symlinked directories
18 set mark-symlinked-directories on
19
20 # A self expanding, auto-correcting alias for sudo.
21 "suod": "\C-vsudo"
22
23 $if mode=emacs
24
25 # alternate mappings for "page up" and "page down" to search the history
26 "\e[5~": history-search-backward
27 "\e[6~": history-search-forward
28
29 $endif