We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa1e5af commit f7d7bffCopy full SHA for f7d7bff
server/src/project/parser/vbaSyntaxParser.ts
@@ -34,7 +34,7 @@ export class SyntaxParser {
34
// });
35
36
// Refuse to do anything that seems like too much work.
37
- if (document.textDocument.lineCount > 1500) {
+ if (document.textDocument.lineCount > 2000) {
38
// TODO: Make this an option that people can increase or decrease.
39
console.log(`Document oversize: ${document.textDocument.lineCount} lines.`);
40
console.warn(`Syntax parsing has been disabled to prevent crashing.`);
0 commit comments