-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinputrc
40 lines (29 loc) · 894 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
39
40
# Always include the global inputrc file
$include /etc/inputrc
# do not bell on tab-completion
set bell-style none
# Make Tab autocomplete regardless of filename case
set completion-ignore-case on
# List all matches
set show-all-if-ambiguous on
# Don’t prompt unless there are over 300 possible completions
set completion-query-items 300
# Don't display common prefix
set completion-prefix-display-length 0
# Don't display hidden files unless requested
set match-hidden-files off
# Show autocomplete results at once
set page-completions off
# Completed names which are symbolic links to
# directories have a slash appended.
set mark-symlinked-directories on
# Supported for bash 4 and above.
set skip-completed-text on
$if mode=emacs
"\ep": history-search-backward
"\en": history-search-forward
$endif
# In bash, make space expand things like !$
$if Bash
Space: magic-space
$endif