-
Notifications
You must be signed in to change notification settings - Fork 0
/
.inputrc
executable file
·52 lines (42 loc) · 1.15 KB
/
.inputrc
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#set editing-mode vi
set show-all-if-ambiguous on
set show-all-if-unmodified on
set bell-style visible
set colored-stats on
set meta-flag on
set input-meta on
set convert-meta off
set output-meta on
# sheer awesome - remap up and down arrows to search bash-history
# .inputrc
# # "\e[A" and "\e[B" being whatever your terminal uses for up & down.
"\e[A": history-search-backward
"\e[B": history-search-forward
# map control-y to delete the entire line
"\C-y": kill-whole-line
# delete word forward is not mapped by default
"\C-f": shell-kill-word
# Completed names which are symbolic links to
# directories have a slash appended.
set mark-symlinked-directories on
$if mode=emacs
# for linux console and RH/Debian xterm
"\e[1~": beginning-of-line
"\e[4~": end-of-line
"\e[5~": beginning-of-history
"\e[6~": end-of-history
"\e[3~": delete-char
"\e[2~": quoted-insert
"\e[5C": forward-word
"\e[5D": backward-word
"\e[1;5C": forward-word
"\e[1;5D": backward-word
# for rxvt
"\e[8~": end-of-line
# for non RH/Debian xterm, can't hurt for RH/DEbian xterm
"\eOH": beginning-of-line
"\eOF": end-of-line
# for freebsd console
"\e[H": beginning-of-line
"\e[F": end-of-line
$endif