forked from l0b0/tilde
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.inputrc
38 lines (29 loc) · 784 Bytes
/
.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
# Up and down arrows
"\e[A": history-search-backward
"\e[B": history-search-forward
# Meta-Delete
"\e[3;3~": kill-word
# Delete for wonky terminals
"\e[3~": delete-char
# Ctrl/Meta arrow keys
"\e[1;5D": backward-word
"\e[1;3D": backward-word
"\e[1;5C": forward-word
"\e[1;3C": forward-word
# Escape keys
"\e[5D": backward-word
"\e\e[D": backward-word
"\e[5C": forward-word
"\e\e[C": forward-word
# Flip through autocompletion matches with Shift-Tab
"\e[Z": menu-complete
set match-hidden-files off
set page-completions off
set completion-query-items 350
set show-all-if-ambiguous on
# Use visual bell instead of sound
set bell-style visible
# Show extra information when completing
set visible-stats on
# Auto-complete files with the wrong case
set completion-ignore-case on