-
Notifications
You must be signed in to change notification settings - Fork 455
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
editor paste lags in response after large uptime #3936
Comments
vscode-java has a custom paste event handler that can automatically escape the content of Strings that are pasted within As a workaround, you could disable the Java extension's custom paste support by setting : "[java]": {
"editor.pasteAs.enabled": false
}, Just to confirm. Does it always take 4-5 seconds when performing the exact same action, or only after working on the project for a long time. It would help if you set Otherwise, I am aware of some general odd behaviour the language server has where after running for some time, certain requests temporarily take longer, but often recover. |
Hi @rgrunber thanks for getting back on this. I have set this setting and activated the trace. When i stumble upon this behaviour again (and i can provide more information) i will report here again... |
Just be aware that "[java]": {
"editor.pasteAs.enabled": false
}, would be expected to make the issue completely go away as it disables our paste contribution. The other setting/instructions I mentioned are more to learn more about potentially where the slowdown happens when the above setting is not present (custom paste enabled). |
Hi, sometimes after quite of time working on a maven quarkus project the pasting of text (e.g. from one file into another) takes a quite amount of time to finish.
In this example one string should be replaced by another string (the one which is selected)
The new string was visible after 4-5 seconds.
We are on the newest extension version 1.40 (happend also before).
JAVASE 21 for language Server, JAVASE 17 for the project (runtime). WIN 10.
Further settings in workspace:
Is this from the eclipse language Server, or is this coming from this extension ?
Thank you!
The text was updated successfully, but these errors were encountered: