Much more optimized error regex

This commit is contained in:
Noah Santschi-Cooney 2018-06-17 18:08:28 +01:00
parent 960597e324
commit 7dd1699dbe
No known key found for this signature in database
GPG key ID: 3B22282472C8AE48
2 changed files with 5 additions and 1 deletions

View file

@ -22,6 +22,10 @@ connection.onInitialize((params): vsclang.InitializeResult => {
};
});
connection.onExit(() => {
})
documents.onDidOpen((event) => {
preprocess(event.document)
})