diff options
author | Aaron LI <aaronly.me@gmail.com> | 2016-05-15 08:44:05 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@gmail.com> | 2016-05-15 08:44:05 +0800 |
commit | d11be71f0c5b7c7ecb5e62ee26a5d760822f680b (patch) | |
tree | c626d94e14c3cecf3f81ef9e52c18fd65d04632e /_inputrc | |
parent | d7f30d89104f15744c4af1f437cbd21eae59d89c (diff) | |
download | dotfiles-d11be71f0c5b7c7ecb5e62ee26a5d760822f680b.tar.bz2 |
_inputrc: merge with openSuSE sample
Diffstat (limited to '_inputrc')
-rw-r--r-- | _inputrc | 17 |
1 files changed, 15 insertions, 2 deletions
@@ -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: # |