vuls: init at 0.27.0
[NixPkgs.git] / nixos / modules / programs / bash / inputrc
blobf339eb649ed811126142e7178799188986e5024e
1 # inputrc borrowed from CentOS (RHEL).
3 set bell-style none
5 set meta-flag on
6 set input-meta on
7 set convert-meta off
8 set output-meta on
9 set colored-stats on
11 #set mark-symlinked-directories on
13 $if mode=emacs
15 # for linux console and RH/Debian xterm
16 "\e[1~": beginning-of-line
17 "\e[4~": end-of-line
18 "\e[5~": beginning-of-history
19 "\e[6~": end-of-history
20 "\e[3~": delete-char
21 "\e[2~": quoted-insert
22 "\e[5C": forward-word
23 "\e[5D": backward-word
24 "\e[1;5C": forward-word
25 "\e[1;5D": backward-word
27 # for rxvt
28 "\e[8~": end-of-line
30 # for non RH/Debian xterm, can't hurt for RH/DEbian xterm
31 "\eOH": beginning-of-line
32 "\eOF": end-of-line
34 # for freebsd console
35 "\e[H": beginning-of-line
36 "\e[F": end-of-line
37 $endif