summaryrefslogtreecommitdiff
path: root/lib/functions.zsh
diff options
context:
space:
mode:
authorDale Campbell <oshuma@gmail.com>2009-12-26 00:41:37 -0600
committerRobby Russell <robby@planetargon.com>2009-12-27 21:16:16 -0800
commit90627d3d1c2e9c1528b1032b47732e21270609b9 (patch)
tree1b86a6ac4efef601e65c6e5e87113d83b5890a5b /lib/functions.zsh
parent2ecc228b2325bf5fadb5c12a5ffff73167e53152 (diff)
downloadzsh-90627d3d1c2e9c1528b1032b47732e21270609b9.tar.gz
zsh-90627d3d1c2e9c1528b1032b47732e21270609b9.tar.bz2
zsh-90627d3d1c2e9c1528b1032b47732e21270609b9.zip
adding quotes to tab()
Diffstat (limited to 'lib/functions.zsh')
-rw-r--r--lib/functions.zsh2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/functions.zsh b/lib/functions.zsh
index f95a59827..74b93f00e 100644
--- a/lib/functions.zsh
+++ b/lib/functions.zsh
@@ -44,7 +44,7 @@ function tab() {
end
tell application "Terminal"
activate
- do script with command "cd $PWD; $*" in window 1
+ do script with command "cd \"$PWD\"; $*" in window 1
end tell
EOF
}