-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinputrc
More file actions
27 lines (20 loc) · 669 Bytes
/
inputrc
File metadata and controls
27 lines (20 loc) · 669 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
# http://askubuntu.com/questions/280327
# mappings for making up and down arrow searching through history
"\e[A": history-search-backward
"\e[B": history-search-forward
"\e[C": forward-char
"\e[D": backward-char
#Use tab to cycle through all the possible completions.
"\t": menu-complete
# completion is case insensitive
set completion-ignore-case on
# Completion suggestions only displays 4 characters
set completion-prefix-display-length 4
# Preserve cursor position
set history-preserve-point on
# Symlinks work as directories
set mark-symlinked-directories on
# Do not autocomplete hidden files
set match-hidden-files off
# Show matches
set colored-stats On