aboutsummaryrefslogtreecommitdiff
path: root/readline/inputrc
diff options
context:
space:
mode:
Diffstat (limited to 'readline/inputrc')
-rw-r--r--readline/inputrc13
1 files changed, 13 insertions, 0 deletions
diff --git a/readline/inputrc b/readline/inputrc
index 381c4e7a..0da55708 100644
--- a/readline/inputrc
+++ b/readline/inputrc
@@ -8,6 +8,9 @@ set bell-style none
# Let readline do stuff like word killing, not stty(1)
set bind-tty-special-chars off
+# Color files by type in the same way as `ls`
+set colored-stats on
+
# Ignore case when matching and completing paths
set completion-ignore-case on
@@ -17,9 +20,16 @@ set completion-map-case on
# Show me up to 5,000 completion items, don't be shy
set completion-query-items 5000
+# When completing, put the matched completion prefix in a different color
+set colored-completion-prefix on
+set menu-complete-display-prefix on
+
# Don't display control characters like ^C if I input them
set echo-control-characters off
+# Detect terminal pastes and don't treat the characters like keyboard input
+set enable-bracketed-paste on
+
# Expand tilde to full path on completion
set expand-tilde on
@@ -48,6 +58,9 @@ set show-all-if-ambiguous on
# Don't re-complete already completed text in the middle of a word
set skip-completed-text on
+# Append characters to indicate completion filetype
+set visible-stats on
+
# Bash macros
$if Bash