aboutsummaryrefslogtreecommitdiff
path: root/readline
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-08-29 12:52:33 +1200
committerTom Ryder <tom@sanctum.geek.nz>2016-08-29 12:52:33 +1200
commit399a805a06b3de2b9e0f10640a8a64b91823f47f (patch)
tree434ab474080a9d0de7c6bcb67add75db0d612ceb /readline
parentTry out Readline's blink-matching-paren feature (diff)
downloaddotfiles-399a805a06b3de2b9e0f10640a8a64b91823f47f.tar.gz
dotfiles-399a805a06b3de2b9e0f10640a8a64b91823f47f.zip
Use consistent case for readline options
Diffstat (limited to 'readline')
-rw-r--r--readline/inputrc22
1 files changed, 11 insertions, 11 deletions
diff --git a/readline/inputrc b/readline/inputrc
index fa84f09c..ce77a5bc 100644
--- a/readline/inputrc
+++ b/readline/inputrc
@@ -5,43 +5,43 @@ set bell-style none
set bind-tty-special-chars off
# Jump to the matching parenthesis briefly when closing one
-set blink-matching-paren On
+set blink-matching-paren on
# Ignore case when matching and completing paths
-set completion-ignore-case On
+set completion-ignore-case on
# Treat underscores and hyphens the same way for completion purposes
-set completion-map-case On
+set completion-map-case on
# Show me up to 5,000 completion items, don't be shy
set completion-query-items 5000
# Don't display control characters like ^C if I input them
-set echo-control-characters Off
+set echo-control-characters off
# Expand tilde to full path on completion
-set expand-tilde On
+set expand-tilde on
# Add a trailing slash for completed symlink directories
-set mark-symlinked-directories On
+set mark-symlinked-directories on
# Don't match dotfiles unless there's a dot
-set match-hidden-files Off
+set match-hidden-files off
# Don't paginate possible completions
-set page-completions Off
+set page-completions off
# Goes nicely with ls(1) -x/--format=across
set print-completions-horizontally on
# Don't actually modify my history
-set revert-all-at-newline On
+set revert-all-at-newline on
# Show multiple completions on first tab press
-set show-all-if-ambiguous On
+set show-all-if-ambiguous on
# Don't re-complete already completed text in the middle of a word
-set skip-completed-text On
+set skip-completed-text on
# Killing words should stop at /
# <https://www.youtube.com/watch?v=VCiRpM_rbF0>