diff options
author | Mathias Bynens <mathias@qiwi.be> | 2015-04-10 18:07:39 +0200 |
---|---|---|
committer | Mathias Bynens <mathias@qiwi.be> | 2015-04-11 17:48:42 +0200 |
commit | 1d6664ec420ff19dae837def525f1b7af1cef8f6 (patch) | |
tree | e94b54027200341ac9fa18c7fb63de7bd20c591c /.bash_profile | |
parent | c9395c28c3dcebe1d22b783e1d11f52811f826da (diff) | |
download | dotfiles-1d6664ec420ff19dae837def525f1b7af1cef8f6.tar.gz dotfiles-1d6664ec420ff19dae837def525f1b7af1cef8f6.tar.bz2 dotfiles-1d6664ec420ff19dae837def525f1b7af1cef8f6.zip |
brew.sh: Use bash-completion2 for improved Bash 4 completion
Hat tip: @elyscape in https://github.com/mathiasbynens/dotfiles/commit/91be10dcee350465566a48cbe303686d2d989d6d#commitcomment-10654929.
Diffstat (limited to '.bash_profile')
-rw-r--r-- | .bash_profile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.bash_profile b/.bash_profile index daa7552..4db6384 100644 --- a/.bash_profile +++ b/.bash_profile @@ -26,8 +26,8 @@ for option in autocd globstar; do done; # Add tab completion for many Bash commands -if which brew > /dev/null && [ -f "$(brew --prefix)/etc/bash_completion" ]; then - source "$(brew --prefix)/etc/bash_completion"; +if which brew > /dev/null && [ -f "$(brew --prefix)/share/bash-completion/bash_completion" ]; then + source "$(brew --prefix)/share/bash-completion/bash_completion"; elif [ -f /etc/bash_completion ]; then source /etc/bash_completion; fi; |