aboutsummaryrefslogtreecommitdiffstats
path: root/_inputrc
diff options
context:
space:
mode:
Diffstat (limited to '_inputrc')
-rw-r--r--_inputrc17
1 files changed, 15 insertions, 2 deletions
diff --git a/_inputrc b/_inputrc
index 7d93f5d..1e1f66f 100644
--- a/_inputrc
+++ b/_inputrc
@@ -1,6 +1,5 @@
#
# ~/.inputrc
-#
# readline configurations
#
# Reference:
@@ -8,7 +7,8 @@
# https://wiki.archlinux.org/index.php/Readline
#
# Aaron LI
-# 2015-09-26
+# Created: 2015-09-26
+# Updated: 2016-05-14
#
#$include /etc/inputrc
@@ -26,5 +26,18 @@ set keymap vi-insert
"\e[B": history-search-forward
$endif
+# The bell style used e.g. on error or tab completion, possible values
+# are `none', `visible', and `audible' the ringing the bell.
+set bell-style none
+
+# If set to on, words which have more than one possible completion without
+# any possible partial completion cause the matches to be listed immediately
+# instead of ringing the bell.
+set show-all-if-unmodified on
+
+# If set to on, words which have more than one possible completion cause the
+# matches to be listed immediately instead of ringing the bell.
+set show-all-if-ambiguous on
+
# vim: set ts=8 sw=4 tw=0 fenc=utf-8 ft=readline: #