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
Try running journalctl with let g:vimpager.ansiesc = 0 and without it (assuming you're using systemd). Or view any really big text file.
vim with AnsiEsc would choke and wait until AnsiEsc finishes. While vim alone is fast enough to read through, like, 1521561 lines of text in a few seconds.
This might seem like a stretch goal, and this scenario isn't always common, but maybe AnsiEsc should be turned off after a set number of lines to prevent this scenario.
The text was updated successfully, but these errors were encountered:
Files with ansi codes that are very big take too long to process with
ansiesc, making vim hang.
When enabling ansiesc for a file passed to vimpager, check if the number
of lines is greater than 1250, if it is, strip ansi codes instead.
Try running
journalctl
withlet g:vimpager.ansiesc = 0
and without it (assuming you're usingsystemd
). Or view any really big text file.vim with AnsiEsc would choke and wait until AnsiEsc finishes. While vim alone is fast enough to read through, like, 1521561 lines of text in a few seconds.
This might seem like a stretch goal, and this scenario isn't always common, but maybe AnsiEsc should be turned off after a set number of lines to prevent this scenario.
The text was updated successfully, but these errors were encountered: