From 7d445090ee073321d06bc9dc1deda4b6d705ec11 Mon Sep 17 00:00:00 2001 From: Jordan Atwood Date: Mon, 2 Jan 2023 18:30:20 -0800 Subject: [PATCH] Color readline completion result prefixes I'm not really sure why I never turned this on before, but it really helps to identify exactly the character which I need to differentiate to continue tab completion. --- src/.inputrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/.inputrc b/src/.inputrc index 62e4d0a..a99fa0e 100644 --- a/src/.inputrc +++ b/src/.inputrc @@ -22,6 +22,9 @@ set enable-bracketed-paste # Displays possible completions using different colors to indicate their file type. set colored-stats on +# Color the completion prefix differently in completion results. +set colored-completion-prefix on + # Completed names which are symbolic links to directories have a slash appended. set mark-symlinked-directories on