Re: terminal width

Ray Andrews <[email protected]> Fri, 3 Apr 2026 15:27:17 -0700
Newsgroups gmane.comp.shells.zsh.devel,gmane.comp.shells.zsh.user
Message-ID <[email protected]>

Looks like that wrap issue can be completely handled by the shell:

     [[ "$nowrap" && -t 1 ]] \
     && { echoti rmam; print -rl $output; echoti smam } \
     || print -rl $output

Thanks Stephane.  Sheesh, sometimes I think I'm asking something that 
the shell shouldn't be expected to do, but she never stops impressing.