diff options
author | Mathias Bynens <mathias@qiwi.be> | 2012-04-14 20:02:19 +0200 |
---|---|---|
committer | Mathias Bynens <mathias@qiwi.be> | 2012-04-14 20:02:19 +0200 |
commit | 82baf9874575e4e89c04f2e653a00c9258fa18f1 (patch) | |
tree | 9aba6accccd374bca3ab6ddc4d2aae9320a74d6b /.bash_profile | |
parent | 5c8ad0ea6ee5fdc1f376a892d6f94cfd5061c915 (diff) | |
download | dotfiles-82baf9874575e4e89c04f2e653a00c9258fa18f1.tar.gz dotfiles-82baf9874575e4e89c04f2e653a00c9258fa18f1.tar.bz2 dotfiles-82baf9874575e4e89c04f2e653a00c9258fa18f1.zip |
.bash_profile: Add `killall` tab completion for common apps
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 bb60817..2930dfa 100644 --- a/.bash_profile +++ b/.bash_profile @@ -25,5 +25,5 @@ export LANG="en_US" # You could just use `-g` instead, but I like being explicit complete -W "NSGlobalDomain" defaults -# Add tab completion for `killall SystemUIServer` -complete -o "nospace" -W "SystemUIServer" killall
\ No newline at end of file +# 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 |