It has something to do with having promptsubst set to on. See below:
[/Users/darren]# var="Testing...
dquote>1,
dquote>2,
dquote>3,
dquote>Testing..."
[/Users/darren]# setopt promptsubst
[/Users/darren]# echo $var
Testing...
1,
2,
3,
Testing...
[/Users/darren]# echo "$var"
Testing...
1,
2,
3,
Testing...
[/Users/darren]# unsetopt promptsubst
[/Users/darren]# echo "$var"
Testing...
1,
2,
3,
Testing...
[/Users/darren]# echo $var
Testing...
1,
2,
3,
Testing...
[/Users/darren]#
In this case, I set my prompt to something very simple, so that I was sure it wasn't a goofed up prompt, but my real prompt requires promptsubst be on for showing Git status. I've also noticed that it happens with something like echo $var | grep Test. Any ideas how I can fix this while still keeping promptsubst on?
I'm running zsh 4.3.11 and using Oh-My-Zsh if that helps?
Thanks!