It's a long shot, but I was wondering if there was a way in zsh, with certain commands, to automatically quote the rest of the line. Eg, for the command he
he (foo*bar + baz)^2
I want it to parse as if I had written
he '(foo*bar + baz)^2'
The reason is that I like to call out to Perl or Haskell for certain tasks and I don't like having to worry about quoting (esp. because sometimes I have reason to use single quote in the expression).