aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2020-06-21 13:43:17 +1200
committerTom Ryder <tom@sanctum.geek.nz>2020-06-21 13:43:17 +1200
commite7dbc92c002ec22c848aab850fea500eaffc1aeb (patch)
tree74b4480c007ed102080600184d7c86e880b4df02
parentMerge branch 'release/v9.25.0' (diff)
parentBump VERSION (diff)
downloaddotfiles-e7dbc92c002ec22c848aab850fea500eaffc1aeb.tar.gz
dotfiles-e7dbc92c002ec22c848aab850fea500eaffc1aeb.zip
Merge branch 'release/v9.26.0'v9.26.0
* release/v9.26.0: Enable bracketed paste mode for Bash Add a few completion color settings Convert some spaces to tabs
-rw-r--r--VERSION4
-rw-r--r--mutt/muttrc2
-rw-r--r--readline/inputrc13
3 files changed, 16 insertions, 3 deletions
diff --git a/VERSION b/VERSION
index 437677b7..35be48c4 100644
--- a/VERSION
+++ b/VERSION
@@ -1,2 +1,2 @@
-tejr dotfiles v9.25.0
-Sat, 20 Jun 2020 12:40:42 +0000
+tejr dotfiles v9.26.0
+Sun, 21 Jun 2020 01:43:13 +0000
diff --git a/mutt/muttrc b/mutt/muttrc
index 8ff08aa5..71b3ca25 100644
--- a/mutt/muttrc
+++ b/mutt/muttrc
@@ -258,7 +258,7 @@ macro index \\l '\
<change-folder-readonly>~/.cache/notmuch/mutt/results<enter>\
<enter-command>set pipe_decode=$my_pipe_decode \
wait_key=$my_wait_key<enter>' \
- 'notmuch: search mail'
+ 'notmuch: search mail'
# Shortcut to reload configuration
set my_muttrc \
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