We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In the ANSITerm constructor, a signal handler is set up that does not work on Windows, as seen in this snippet from the file:
new create(notify: ANSINotify iso, source: DisposableActor, timers: Timers = Timers) => """ Create a new ANSI term. """ _timers = timers _notify = consume notify _source = source // Windows explodes in a swarm of tiny window fragments SignalHandler(recover _TermResizeNotify(this) end, Sig.winch()) _size()
I've opened a PR where I ifdef this line out for Windows.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the ANSITerm constructor, a signal handler is set up that does not work on Windows,
as seen in this snippet from the file:
I've opened a PR where I ifdef this line out for Windows.
The text was updated successfully, but these errors were encountered: