diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2017-01-28 20:51:23 +1300 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2017-01-28 20:51:23 +1300 |
commit | 891e547055c48523ab89e2297eb23636c1aed931 (patch) | |
tree | 127f9efc3050a6eb651514c3aabd477aa26f5f3d /bash/bashrc | |
parent | Correct a typeset call (diff) | |
download | dotfiles-891e547055c48523ab89e2297eb23636c1aed931.tar.gz dotfiles-891e547055c48523ab89e2297eb23636c1aed931.zip |
Start using Bash host completion
But use ~/.hosts if it's there
Diffstat (limited to 'bash/bashrc')
-rw-r--r-- | bash/bashrc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bash/bashrc b/bash/bashrc index ca13c4bf..16669adf 100644 --- a/bash/bashrc +++ b/bash/bashrc @@ -57,8 +57,8 @@ shopt -s histappend shopt -s histreedit # Repeat the expanded line on successful history expansion shopt -s histverify -# Don't use Bash's builtin host completion -shopt -u hostcomplete +# Use Bash's builtin host completion +shopt -s hostcomplete # Don't change newlines to semicolons in history shopt -s lithist # Don't warn me about new mail all the time |