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
// Instead of this: this._xterm.on('key', f); // Do this: this._xterm.onKey(f);
We could remove IEventEmitter from the API and just use that internally. This would prevent errors like:
this._xterm.on('ky', f);
And also make it harder to access private events.
The text was updated successfully, but these errors were encountered:
Deprecate emit
3582f87
Part of xtermjs#1505
Introduce new onEvent APIs and deprecate on/off/etc.
ba4662a
Successfully merging a pull request may close this issue.
We could remove IEventEmitter from the API and just use that internally. This would prevent errors like:
And also make it harder to access private events.
The text was updated successfully, but these errors were encountered: