You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to filter a large file (6 million lines). nothing happens, I never get the opportunity to input a filter expression/string. I simply get dropped back in my 6 million line log file.
With smaller text files the extension seems to work, but inability to use it on large files defeats the purpose.
The text was updated successfully, but these errors were encountered:
Hey @bradlitterell! The absence of a prompt window suggests that VS Code doesn't even get to executing the extension's code. The extension registers a text editor command, and VS Code needs to set up an editing context so that the extension could do its job. With 6 million lines, this preparatory work alone take too much time. I would say, such an amount warrants using separate tools rather than relying solely on an IDE...
When trying to filter a large file (6 million lines). nothing happens, I never get the opportunity to input a filter expression/string. I simply get dropped back in my 6 million line log file.
With smaller text files the extension seems to work, but inability to use it on large files defeats the purpose.
The text was updated successfully, but these errors were encountered: