-
Notifications
You must be signed in to change notification settings - Fork 446
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
Feature: Option to control polling time interval (when polling for code changes) squiggly line lag #381
Comments
Recent changes improved the autocompletion performance. Please download the most recent If it still isn't fast enough, you can change your vscode prefs like:
|
I think there is a misunderstanding here. I'm not really talking about quick suggestions popup, but rather about the squiggly lines that indicate a warning or error. Are you able to see the GIF animation? See how the squiggly lines lag behind what I'm typing in (please ignore the popups). In fact, closely watching the animation you can see that the quick suggestions popup are right on time, but the squiggly lines are lagging behind anyway. So I believe the two are not related. @fbricon Thank you for the quick response btw :) |
@fbricon Btw, I see these errors in Console (under Language Support for Java). Would they be related to this problem in any way? |
These errors are related to eclipse-jdtls/eclipse.jdt.ls#369 |
@fbricon I'm trying the latest build 0.15.0-673. There is a definite improvement in the squiggly line performance and I'm very happy about it. 😄 It looks like instead of lagging behind (as it did in 0.14.0), now it just appears after a delay of about a second. In 0.14.0 you could especially observe the lag when you hold down Ctrl-Z to undo what you typed out (you had to wait several seconds before the language server catches up to your quick multiple undo), but with this CI build, no lag at all (except for that 1 second delay). 🙂 I will continue observing the performance during my daily work. |
Ok, let's close this one as fixed then. |
I notice sometimes I'm editing Java code, the code linting lags behind. So assuming I type a line of code like so:
String vscodeJava = null;
, the squiggly lines indicating errors slowly go like this (you can see it happening slowly in front of your very eyes long after you typed the whole line out):Or see this GIF:
(Thank you to NickeManarin/ScreenToGif)
While this could be a bug, I think a feature to control the polling interval would be helpful. So it only polls the code for changes every second or two seconds or so.
The text was updated successfully, but these errors were encountered: