You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using SwiftKotlinApp, if you type new text into the Swift text area input, the translator runs for every key pressed, formatting the written text, and hence making the text selection invalid. As a result, typing on the text area is unusable.
Possible solutions:
Try to keep the focus on the proper place: This might be difficult considering that the format will be dynamically changed, so the position could not be identical after running.
Do not run the translator until some time passes: Only when idle, run the translator. The problem will still happen but less frequently, probably making the solution "good enough" for usage
Add a button to "format" the Swift code, and apply that as a manual action. Word highlighting will not be shown until the format happens.
The text was updated successfully, but these errors were encountered:
When using SwiftKotlinApp, if you type new text into the Swift text area input, the translator runs for every key pressed, formatting the written text, and hence making the text selection invalid. As a result, typing on the text area is unusable.
Possible solutions:
The text was updated successfully, but these errors were encountered: