]> git.ipfire.org Git - ipfire-2.x.git/blame - config/etc/inputrc
git-svn-id: http://svn.ipfire.org/svn/ipfire/IPFire/source@16 ea5c0bd1-69bd-2848...
[ipfire-2.x.git] / config / etc / inputrc
CommitLineData
cd1a2927
MT
1# do not bell on tab-completion
2#set bell-style none
3
4set meta-flag on
5set input-meta on
6set convert-meta off
7set 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