diff options
author | Mathias Bynens <mathias@qiwi.be> | 2012-06-17 12:01:13 +0200 |
---|---|---|
committer | Mathias Bynens <mathias@qiwi.be> | 2012-06-17 12:01:13 +0200 |
commit | b61588dd53d2ca5f4f4cbe5ab32674e90d636dc7 (patch) | |
tree | c981a619d3f6b4496cec68bd3857ef9c39c8fc4f /.bash_profile | |
parent | b0fd2653484540a01d93903c3e56b8ef9951ec1b (diff) | |
download | dotfiles-b61588dd53d2ca5f4f4cbe5ab32674e90d636dc7.tar.gz dotfiles-b61588dd53d2ca5f4f4cbe5ab32674e90d636dc7.tar.bz2 dotfiles-b61588dd53d2ca5f4f4cbe5ab32674e90d636dc7.zip |
.bash_profile: Add tab completion for many more commands
Diffstat (limited to '.bash_profile')
-rw-r--r-- | .bash_profile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.bash_profile b/.bash_profile index 2930dfa..ca08bcb 100644 --- a/.bash_profile +++ b/.bash_profile @@ -26,4 +26,7 @@ export LANG="en_US" complete -W "NSGlobalDomain" defaults # Add `killall` tab completion for common apps -complete -o "nospace" -W "Finder Dock Mail Safari iTunes iCal Address\ Book SystemUIServer" killall
\ No newline at end of file +complete -o "nospace" -W "Finder Dock Mail Safari iTunes iCal Address\ Book SystemUIServer" killall + +# If possible, add tab completion for many more commands +[ -f /etc/bash_completion ] && source /etc/bash_completion
\ No newline at end of file |