-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinputrc
More file actions
34 lines (27 loc) · 675 Bytes
/
inputrc
File metadata and controls
34 lines (27 loc) · 675 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# /etc/inputrc - global inputrc for libreadline
# See readline(3readline) and `info rluserman' for more information.
set completion-ignore-case on
set input-meta on
set output-meta on
# set convert-meta off
# home end keys
"\e[1~": beginning-of-line
"\e[4~": end-of-line
# del / inst keys
"\e[3~": delete-char
"\e[2~": quoted-insert
# alt + left / right
"\e[1;5C": forward-word
"\e[1;5D": backward-word
"\e[1;3C": forward-word
"\e[1;3D": backward-word
"\e[5C": forward-word
"\e[5D": backward-word
"\e\e[C": forward-word
"\e\e[D": backward-word
# $if term=rxvt
# "\e[7~": beginning-of-line
# "\e[8~": end-of-line
# "\eOc": forward-word
# "\eOd": backward-word
# $endif