]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - config/etc/inputrc
HinzugefĆ¼gt:
[people/pmueller/ipfire-2.x.git] / config / etc / inputrc
1 # do not bell on tab-completion
2 #set bell-style none
3
4 set meta-flag on
5 set input-meta on
6 set convert-meta off
7 set output-meta on
8
9 $if mode=emacs
10
11 # for linux console and RH/Debian xterm
12 "\e[1~": beginning-of-line
13 "\e[4~": end-of-line
14 "\e[5~": beginning-of-history
15 "\e[6~": end-of-history
16 "\e[3~": delete-char
17 "\e[2~": quoted-insert
18 "\e[5C": forward-word
19 "\e[5D": backward-word
20 "\e\e[C": forward-word
21 "\e\e[D": backward-word
22
23 # for rxvt
24 "\e[8~": end-of-line
25
26 # for non RH/Debian xterm, can't hurt for RH/DEbian xterm
27 "\eOH": beginning-of-line
28 "\eOF": end-of-line
29
30 # for freebsd console
31 "\e[H": beginning-of-line
32 "\e[F": end-of-line
33 $endif