mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-23 01:58:53 +01:00
Clear auto closing tag timeout
This should already be effectively canceled but no reason to fire it
This commit is contained in:
@@ -30,7 +30,10 @@ class TagClosing {
|
||||
public dispose() {
|
||||
disposeAll(this.disposables);
|
||||
this._disposed = true;
|
||||
this.timeout = undefined;
|
||||
if (this.timeout) {
|
||||
clearTimeout(this.timeout);
|
||||
this.timeout = undefined;
|
||||
}
|
||||
}
|
||||
|
||||
private onDidChangeTextDocument(
|
||||
|
||||
Reference in New Issue
Block a user