~vcs-imports/ipfire/ipfire-2.x

« back to all changes in this revision

Viewing changes to config/etc/inputrc

  • Committer: Daniel Glanzmann
  • Date: 2008-09-26 17:05:28 UTC
  • mto: (1394.1.12)
  • mto: This revision was merged to the branch mainline in revision 1401.
  • Revision ID: git-v1:19ac4d1b6e234e1391b3d406381e3b74e92c40dd
added new useragent thunderbird

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
 
# Completed names which are symbolic links to
10
 
# directories have a slash appended.
11
 
set mark-symlinked-directories on
12
 
 
13
 
$if mode=emacs
14
 
 
15
 
# for linux console and RH/Debian xterm
 
1
# Begin /etc/inputrc
 
2
 
 
3
# Allow the command prompt to wrap to the next line
 
4
set horizontal-scroll-mode Off
 
5
 
 
6
# Enable 8bit input
 
7
set meta-flag On
 
8
set input-meta On
 
9
 
 
10
# Turns off 8th bit stripping
 
11
set convert-meta Off
 
12
 
 
13
# Keep the 8th bit for display
 
14
set output-meta On
 
15
 
 
16
# none, visible or audible
 
17
set bell-style none
 
18
 
 
19
# All of the following map the escape sequence of the
 
20
# value contained inside the 1st argument to the
 
21
# readline specific functions
 
22
 
 
23
"\eOd": backward-word
 
24
"\eOc": forward-word
 
25
 
 
26
# for linux console
16
27
"\e[1~": beginning-of-line
17
28
"\e[4~": end-of-line
18
 
# commented out keymappings for pgup/pgdown to reach begin/end of history
19
 
#"\e[5~": beginning-of-history
20
 
#"\e[6~": end-of-history
21
 
"\e[5~": history-search-backward
22
 
"\e[6~": history-search-forward
 
29
"\e[5~": beginning-of-history
 
30
"\e[6~": end-of-history
23
31
"\e[3~": delete-char
24
32
"\e[2~": quoted-insert
25
 
"\e[5C": forward-word
26
 
"\e[5D": backward-word
27
 
"\e[1;5C": forward-word
28
 
"\e[1;5D": backward-word
29
 
 
30
 
# for rxvt
31
 
"\e[8~": end-of-line
32
 
"\eOc": forward-word
33
 
"\eOd": backward-word
34
 
 
35
 
# for non RH/Debian xterm, can't hurt for RH/DEbian xterm
 
33
 
 
34
# for xterm
36
35
"\eOH": beginning-of-line
37
36
"\eOF": end-of-line
38
37
 
39
 
# for freebsd console
 
38
# for Konsole
40
39
"\e[H": beginning-of-line
41
40
"\e[F": end-of-line
42
 
$endif
 
41
 
 
42
# End /etc/inputrc