summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--plugins/textastic/textastic.plugin.zsh8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/textastic/textastic.plugin.zsh b/plugins/textastic/textastic.plugin.zsh
index c34162139..f5901eae2 100644
--- a/plugins/textastic/textastic.plugin.zsh
+++ b/plugins/textastic/textastic.plugin.zsh
@@ -4,14 +4,14 @@
# If tt is passed a file, open it in Textastic
#
function tt() {
- if [[ -z $1 ]]
+ if [[ -z "$1" ]]
then
open -a "textastic.app"
else
- open -a "textastic.app" $1
- if [[ -d $1 ]]
+ open -a "textastic.app" "$1"
+ if [[ -d "$1" ]]
then
- cd $1
+ cd "$1"
fi
fi
}