-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdot_inputrc
More file actions
37 lines (26 loc) · 1.02 KB
/
Copy pathdot_inputrc
File metadata and controls
37 lines (26 loc) · 1.02 KB
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
TAB:menu-complete
"\033[B":history-search-forward
"\033[A":history-search-backward
# Suppress attempts to generate noise in the current interactive session.
set bell-style off
# Use case-insensitive auto-complete.
set completion-ignore-case on
# Use bracketed paste mode in the current interactive session.
# See information: https://cirw.in/blog/bracketed-paste
set enable-bracketed-paste on
# Show all matches when there more than one possible completions.
set show-all-if-ambiguous on
# Show further type information when listing possible completions.
set visible-stats on
# Ignore hidden system content while auto-completing.
set match-hidden-files off
# Use markers to indicate the matching strings when listing completions.
set colored-completion-prefix on
# Mark directories links with a specific character.
set mark-symlinked-directories on
# Reinstate the entire word via expansion.
set skip-completed-text on
# Fix input and output encoding on the current machine.
set input-meta on
set output-meta on
set convert-meta off