-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.inputrc
More file actions
39 lines (27 loc) · 686 Bytes
/
.inputrc
File metadata and controls
39 lines (27 loc) · 686 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
35
36
37
38
39
###############
### INPUTRC ###
###############
# Readline: library that provides line-editing for interactive programs
# with a command-line interface, such as Bash.
# No annoying bell
set bell-style none
# TODO
set colored-stats on
# TODO
set echo-control-characters off
# Show option list with TAB
set show-all-if-ambiguous on
# Case insensitivity for tab completion
set completion-ignore-case on
# Append filetype info to lists
set visible-stats on
# Tab-complete hidden files
set match-hidden-files on
# Highlight matching parentheses
set blink-matching-paren on
# TODO
set enable-bracketed-paste on
# TODO
set completion-map-case on
# TODO
set skip-completed-text on