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
Cancellation token is issued when the next operation happens. For example, when typing abc, Vetur will query TS Server for diagnostics on a, ab, abc. If typing of abc finishes before a's diagnostic request is responded, vscode-languageclient should send a cancellation token.
In this case, Vetur should forward that cancellation token to TS Server so it can stop computing outdated diagnostics/auto-completion. This should reduce a lot of CPU/memory usage from VLS.
The text was updated successfully, but these errors were encountered:
Cancellation token is issued when the next operation happens. For example, when typing
abc
, Vetur will query TS Server for diagnostics ona
,ab
,abc
. If typing ofabc
finishes beforea
's diagnostic request is responded, vscode-languageclient should send a cancellation token.In this case, Vetur should forward that cancellation token to TS Server so it can stop computing outdated diagnostics/auto-completion. This should reduce a lot of CPU/memory usage from VLS.
The text was updated successfully, but these errors were encountered: