Skip to content

Commit f7d7bff

Browse files
committed
Increased file max size
1 parent fa1e5af commit f7d7bff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/src/project/parser/vbaSyntaxParser.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export class SyntaxParser {
3434
// });
3535

3636
// Refuse to do anything that seems like too much work.
37-
if (document.textDocument.lineCount > 1500) {
37+
if (document.textDocument.lineCount > 2000) {
3838
// TODO: Make this an option that people can increase or decrease.
3939
console.log(`Document oversize: ${document.textDocument.lineCount} lines.`);
4040
console.warn(`Syntax parsing has been disabled to prevent crashing.`);

0 commit comments

Comments
 (0)