@David_Wolfe - there are a couple of options that you could use to
maybe accomplish
something close to what you want:
- Pipe to VIEW
- Diddle the registry directly.
By piping to the VIEW command, you can easily turn word wrap on/off and do a lot of other things. That's what I would more strongly recommend doing.
However, I am a stubborn software developer who wants things exactly the way
I want them, so I can hardly fault others for the same attitude, LOL.
In the registry, there's HKEY_CURRENT_USER\Console. Under that are several subkeys, and there
should be one there for the last time you used TCC. (If it didn't create one for a TCC instance hosted by TCmd, then run TCC directly once and see if the key shows up.)
You can try using the @REGSET built-in function, or the REG Windows command to change the value of ScreenBufferSize and/or WindowSize, and see where that gets you. I'd work in a bare console TCC session and try getting it to behave the way I wanted
there and then see if it carries over into TCC being run in a TCmd window.
You have to know how to parse the single value in both of those into rows & columns.
The Registry documentation for ScreenBufferSize is here:
And for WindowSize, it's here:
Be sure to let us know whether you're successful, and what worked.
This can be a useful resource for others desiring to do the same thing.