diff options
| author | Chris Smith <csmith@bloomhealthco.com> | 2014-08-27 08:27:31 -0500 | 
|---|---|---|
| committer | Chris Smith <csmith@bloomhealthco.com> | 2014-08-27 08:27:31 -0500 | 
| commit | 362f2a56d276aebfb8da4e3244994f69899bbdbd (patch) | |
| tree | 43365b0f4adf235ed9d2c1cace26455b34eacf97 /plugins/textastic | |
| parent | 325c18736e82d0688f7437cefff23910ebd7cedd (diff) | |
| download | zsh-362f2a56d276aebfb8da4e3244994f69899bbdbd.tar.gz zsh-362f2a56d276aebfb8da4e3244994f69899bbdbd.tar.bz2 zsh-362f2a56d276aebfb8da4e3244994f69899bbdbd.zip | |
Adding quotes around $1
Diffstat (limited to 'plugins/textastic')
| -rw-r--r-- | plugins/textastic/textastic.plugin.zsh | 8 | 
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  } | 
