-
Notifications
You must be signed in to change notification settings - Fork 0
/
.inputrc
34 lines (24 loc) · 841 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
# Cycle completions with TAB
TAB: menu-complete
# Cycle backwards with Shift-TAB
"\e[Z": menu-complete-backward
# Show list of completions before cycling
set menu-complete-display-prefix on
# Show list of completions and cycle immediately
set show-all-if-ambiguous on
# Enable colors when completing filenames and directories
set colored-stats on
# Color the common prefix if multiple matches are found
set colored-completion-prefix on
# Ignore case during completion
set completion-ignore-case on
# Treat "-" and "_" the same way
set completion-map-case on
# Append "/" to symlinked dirs
set mark-symlinked-directories on
# Use typed text as a required prefix to cycle history
"\e[A": history-search-backward
"\e[B": history-search-forward
# Disable bell and control characters
set bell-style none
set echo-control-characters off