-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdot_inputrc
More file actions
34 lines (25 loc) · 854 Bytes
/
Copy pathdot_inputrc
File metadata and controls
34 lines (25 loc) · 854 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
32
33
34
# single-tab is sufficient to display alternatives
set show-all-if-ambiguous on
# ignores cases
set completion-ignore-case on
# ~ is left unexpanded when completing paths
set expand-tilde off
# adds trailing / to symlinks when completing paths
set mark-symlinked-directories on
# shows file types when completing
set visible-stats on
# uses the text that has already been typed as the prefix for searching through
# commands
"\e[B": history-search-forward
"\e[A": history-search-backward
# avoids autocompleting hidden files unless the pattern explicitly begins with a
# dot
set match-hidden-files off
# shows extra file info when completing, much like `ls -F` does
set visible-stats on
# considers text on and after cursor to autocomplete
set skip-completed-text on
# allows utf-8 text
set input-meta on
set output-meta on
set convert-meta off