forked from lokidokicoki/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathinputrc
More file actions
31 lines (23 loc) · 621 Bytes
/
inputrc
File metadata and controls
31 lines (23 loc) · 621 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
# See readline(3readline) and `info rluserman' for more information.
$include /etc/inputrc
set match-hidden-files off
set bell-style visible
set blink-matching-paren on
set bind-tty-special-chars on
#set horizontal-scroll-mode on
#set show-all-if-ambiguous on
# insert
"\e[2~": overwrite-mode
# pgup
"\e[5~": history-search-backward
# pgdn
"\e[6~": history-search-forward
# ctrl+delete
"\e[3;5~": kill-word
#"": backward-kill-word
#"\e?": backward-kill-word
#control-DEL: backward-kill-word
#"\C-DEL": backward-kill-word
# why doesnt this work from /etc/inputrc?
"\e[1;5C": forward-word
"\e[1;5D": backward-word