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
VSCode terminal use canvas to show command result. it's so amazing! i wonder how it's done?
like this? input command -> native terminal -> output command -> syntax to html -> draw html to canvas
The text was updated successfully, but these errors were encountered:
You can check out this blog post I wrote about it for a high-level summary: https://code.visualstudio.com/blogs/2017/10/03/terminal-renderer
Here's the PR that goes into more technical details: xtermjs/xterm.js#938
Essentially this is how it was before:
input -> pty -> output -> create html based on output
And now:
input -> pty -> output -> draw text to canvas based on output
Sorry, something went wrong.
Tyriar
No branches or pull requests
VSCode terminal use canvas to show command result.
it's so amazing! i wonder how it's done?
like this?
input command -> native terminal -> output command -> syntax to html -> draw html to canvas
The text was updated successfully, but these errors were encountered: