Releases: walles/moar
v1.27.2: Handle wide chars in the input
Like CJK characters for example.
Before this change, the presence of wide characters in the input would
break the display if lines were overflowing on the right.
With this release, we now handle wide characters correctly.
v1.27.1: Accept \ characters in URLs
Valid or not, these exist in the wild and we need to support them.
v1.27.0: Auto detect JSON for highlightning
With this release, if you pipe JSON into moar
, moar
will automatically
detect that the input is JSON and highlight it as such.
v1.26.0: Support ANSI codes for coloring underlines
Also, make line numbers easier to read, and include stack traces in goroutine panic reports.
v1.25.4: Fix a highlighting issue
Reported here: #236 (comment)
v1.25.3: Fix issue with scrolling down while the input stream was loading
Fix issue with scrolling down while the input stream was loading
v1.25.2: Random fixes
- Use fallback if $EDITOR is not set
- Accept ^H as backspace when searching
- Handle no-EOL while tailing files
- Tune shutdown code on Windows
v1.25.1: Fix a hang on Unix
Fix a hang on Unix
Fancy shutdown, fancy problems, let's hope this release has no races.
v1.25.0: Tail files, not just streams
With this release, if you open a (log?) file in moar, and more lines are added to the file after you start moar, moar will pick up the new lines and display them.
Also, if you have a terminal editor (nano, vim etc), and press "v" to edit a file, moar will now not steal the first byte from your editor any more. Improved on Unix, Windows unchanged, PRs welcome.