50 Mb limit fix suggestion. #88
Labels
effort: high
Initial effort estimate: High
enhancement
New feature or request
priority: medium
Priority estimate: Medium
About 50 mb file limit, I can tell you that I developed too a xliff help extension(I won´t put here the link because I don´t want to be a spammer) , and I had the same issue. I think the problem is using in xlf-document.ts class, function loadFromURI the sentence
workspace.openTextDocument(sourceUri)).getText();
Instead using openTextDocument you can use:
If you need a further split this content into lines you can do this:
const Lines = content.split('\r\n');
I am not sure 100 % you can fix the issue this way, but I remember this issue.
I hope this can help. Thank you for your extension.
The text was updated successfully, but these errors were encountered: