-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow terminal escapes in LogSender messages. #29
Comments
I'm hesitant to add anything more to the I had been working on project to rewrite the |
I wasn't really envisioning API changes here; I was thinking more that when Is there anything that wouldn't work with just passing a |
Having Sorry, I was unclear. What I meant by "concurrent operation" was any operation running concurrent to |
Are there any workarounds for this right now though? Something that might work would be to change the sender to either send an enum like below, or a enum Command {
SendPlain(String),
SendStyled(String),
SetBuffer(String),
SetCursor(usize),
// ...
} |
The changes described in my previous comment have been implemented: The |
Is this possible?
\x01
and\x02
don't work.The text was updated successfully, but these errors were encountered: