Releases: walles/moar
v1.24.5: Fix editing files on Windows
Before this release, pressing v to edit a file on Windows would tell you your editor was not executable.
With this release, executability detection on Windows should now work.
v1.24.4: Support opening piped input in editor
By pressing v.
Before this change, v only worked for actual files.
With this change in place, v will also work for piped input.
Piped input will be written into a temporary file, then the editor will be opened with that file.
v1.24.3: Fix a shutdown issue
Take II.
v1.24.2: Fix crash with --quit-if-one-screen
Fix crash with --quit-if-one-screen
v1.24.1: Fix terminal editor lagginess
Before this release, if you pressed v to open the current file in your $EDITOR
, and the editor was terminal based (think nano
, vim
), then the editor was really laggy.
That lagginess has been fixed in this release.
v1.24.0: Support pressing 'v' to launch an editor
With this release, if you press v while viewing a file, moar
will launch an editor to edit the file. The editor is determined by the $VISUAL
and $EDITOR
environment variables.
Fixes #211.
v1.23.15: Faster search in large files
Before this release, searching was single threaded.
With this release, searching now uses all available cores, which makes searching large files a lot faster.
Searching a nine hundred thousand lines file now works fine on my laptop, which it did not before.
Make search 65% faster
Noticeable in large files. This is relative to the previous release, where we would on average search the whole file 1.5 times.
With this change, we will on average search the whole file once.
v1.23.13: Search tuning
Search now wraps automatically when typing. This enables finding hits above the cursor without having to exit the search and press n
.
Search hits are now always highlighted in the default colors. This improves the search experience in riff
highlighted diffs:
v1.23.12: Mouse copying in VSCode and IntelliJ
With this release, mouse copying works out of the box in the IntelliJ and VSCode terminals.