-
Notifications
You must be signed in to change notification settings - Fork 3
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
Do not let terminal take focus #40
Comments
I've made some research - so focus is highly pushed in term.js itself. |
We'll need to somehow disable that. An optimal solution would be to have some sort of control over this in upstream code, and use that. |
E.g. an initialization option, or run-time switch. |
Another related thing: we need the terminal to display cursor even if it is not focused. |
I've accomplished this by editing |
In summary I am not very happy about this solution, but have not found else one. |
And one more thing - focus is actually irrelevant, of course we might remove all related to handling key downs in |
Now, since we have implemented all shortcuts in JavaScript, users don't need to send any keystrokes to tlog-play itself. Similarly, the future JavaScript-based player wouldn't need that. Therefore, we need to remove the ability of the terminal to take focus. Otherwise it captures keystrokes and masks them from the browser, which is confusing and annoying.
The text was updated successfully, but these errors were encountered: