diff options
author | Mathias Bynens <mathias@qiwi.be> | 2012-03-02 10:02:54 +0100 |
---|---|---|
committer | Mathias Bynens <mathias@qiwi.be> | 2012-03-02 10:02:54 +0100 |
commit | fc1f806b9d044392c9d725c6d0363ba23efc6524 (patch) | |
tree | ed8beecfa622206f624fbc55de36d34ab73c9a08 /.inputrc | |
parent | 9910901fbb7e4662017975087cc092ad5f8ba366 (diff) | |
download | dotfiles-fc1f806b9d044392c9d725c6d0363ba23efc6524.tar.gz dotfiles-fc1f806b9d044392c9d725c6d0363ba23efc6524.tar.bz2 dotfiles-fc1f806b9d044392c9d725c6d0363ba23efc6524.zip |
.inputrc: Don’t prompt when autocompleting unless there are over 500 possible completions
See http://blog.sanctum.geek.nz/lazier-tab-completion/.
Diffstat (limited to '.inputrc')
-rw-r--r-- | .inputrc | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1,6 +1,9 @@ # Make Tab autocomplete regardless of filename case set completion-ignore-case on +# Don’t prompt unless there are over 500 possible completions +set completion-query-items 500 + # List all matches in case multiple possible completions are possible set show-all-if-ambiguous on |