Emacs: logos version 0.3.0
Logos is a small package that provides the means for a simple focus mode utilising page breaks or outline headings. Watch the demo of logos.el and refer to the manual for the relevant details. That page also includes links to the GitLab repo and its mirror on GitHub.
Below is the change log entry.
Version 0.3.0 on 2022-03-30
This release basically contains one major refinement about how buffer narrowing is handled. In detail:
-
If
logos-outlines-are-pagesis non-nil, it now includes the match of thepage-delimiterregexp in the narrowed region and leaves point right after thepage-delimiter—so in Org mode, after the stars. (It is better to leave point there than at the very beginning of the narrowed buffer to match the behavior oflogos-forward-page-dwimwhen the buffer is not narrowed.) The inclusion of the delimiter helps retain any folding functionality associated with that line (e.g. Org headings). -
To avoid skipping pages in the narrowed case when point is at their outer boundaries,
logoschecks if you are right at the start of apage-delimiterand if so moves past the delimiter in the opposite direction of the given motion: so if you are moving back, it puts you after the delimiter, and if you are moving forward it puts you before the delimiter. (The bug was that if the point was atpoint-maxwhile narrowed and moving forward, it would skip past a page and the same in the opposite direction withpoint-min.) -
Changed
logos-narrow-dwimto calllogos--narrow-to-pageinstead ofnarrow-to-page, so that it too includes thepage-delimitermatch in the page. -
The
logos--page-pnow always checks for the right delimiter, which may be that of the outline iflogos-outlines-are-pagesis non-nil. Whereas before it was hard-coded to the genericpage-delimiter.
Thanks to Omar AntolĂn Camarena for commit
8c2e85033db982ef13a5e041012dc45d86d9de32 which covers the first three
of the aforementioned points. The contribution was sent as a patch via
email. Omar has already assigned copyright to the Free Software
Foundation.