aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolae Vartolomei <nvartolomei@gmail.com>2012-08-07 15:29:08 +0300
committerMathias Bynens <mathias@qiwi.be>2012-08-07 14:31:21 +0200
commitaff769fd75225d8f2e481185a71d5e05b76002dc (patch)
tree96d597894eac933bbe3a991054b27277ef20ae49
parent378fa5bec44d3b93b3b170e6f27f5e89c277e2e2 (diff)
downloaddotfiles-aff769fd75225d8f2e481185a71d5e05b76002dc.tar.gz
dotfiles-aff769fd75225d8f2e481185a71d5e05b76002dc.tar.bz2
dotfiles-aff769fd75225d8f2e481185a71d5e05b76002dc.zip
.bash_profile: Update `killall` Tab completion for OS X 10.8
-rw-r--r--.bash_profile2
-rw-r--r--.functions2
2 files changed, 2 insertions, 2 deletions
diff --git a/.bash_profile b/.bash_profile
index a14416a..663e201 100644
--- a/.bash_profile
+++ b/.bash_profile
@@ -34,7 +34,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
+complete -o "nospace" -W "Contacts Calendar Dock Finder Mail Safari iTunes SystemUIServer Terminal Twitter" killall
# If possible, add tab completion for many more commands
[ -f /etc/bash_completion ] && source /etc/bash_completion \ No newline at end of file
diff --git a/.functions b/.functions
index f35f483..931bbf7 100644
--- a/.functions
+++ b/.functions
@@ -34,7 +34,7 @@ function server() {
function phpserver() {
local port="${1:-4000}"
local ip=$(ipconfig getifaddr en1)
- sleep 1 && open "http://${ip}:${port}" &
+ sleep 1 && open "http://${ip}:${port}/" &
php -S "${ip}:${port}"
}