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
When you echo async function without flush, the output is not flushed at all
flush should always output the content you echo
Write this code:
term.echo(async () => 'Hello', { newline: false, flush: false }); term.echo(async () => ', world!', { flush: false }); term.flush();
N/A
New devel method terminal::view_ready() fix the issue. It seems that terminal::view_ready() needs to be changed to terminal::output_ready().
terminal::view_ready()
terminal::output_ready()
The text was updated successfully, but these errors were encountered:
Also the types needs to be updated
Sorry, something went wrong.
No branches or pull requests
Issue summary
When you echo async function without flush, the output is not flushed at all
Expected behavior
flush should always output the content you echo
Steps to reproduce
Write this code:
Browser and OS
N/A
Additional notes
New devel method
terminal::view_ready()
fix the issue. It seems thatterminal::view_ready()
needs to be changed toterminal::output_ready()
.The text was updated successfully, but these errors were encountered: