PhonicUK
PhonicUK
You could use a button to toggle the visibility of a list in the meantime?
It's something I'd like to do - although implementing line wrapping is a pain.
You can't at the moment, but it is something I want to try and add support for. Unfortunately mouse support in console applications is *really* fiddly.
What happens if you use Putty as the SSH client instead?
What's the default code page? CP437 does have the requisite lineart characters.
What happens if you put this in your application before root.run? ``` Console.OutputEncoding = ASCIIEncoding.GetEncoding(850); ```
I suspect what's going on is there's a mismatch between the consoles code page and the output encoding being sent to the console. That's why I'd want to try explicitly...
Has anyone tried using powershell remoting to see how that behaves?
Not yet I'm afraid, it's pretty rare and its coming from end-user sites where I can't do an autopsy.
Are you using the version from nuget, or a version compiled from the latest version of this repo?