origami.el

A folding minor mode for Emacs (by elp-revive)

Origami.el Alternatives

Similar projects and alternatives to origami.el based on common topics and language

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better origami.el alternative or higher similarity.

origami.el reviews and mentions

Posts with mentions or reviews of origami.el. We have used some of these posts to build our list of alternatives and similar projects.
  • Folding headings in org-super-agenda
    1 project | /r/emacs | 18 May 2021
    (defvar org-super-agenda-auto-fold-groups '("Stuck Tasks" "Other items" "Notice")) ;; function borrowed from new fork of origami.el https://github.com/emacs-origami/origami.el/blob/master/origami.el#L1024 (defun outline-auto-agenda (pattern-or-patterns function) "Search buffer and apply the FUNCTION on each line. PATTERN-OR-PATTERNS is a string or a list of strings to search" (interactive) (let ((patterns (if (listp pattern-or-patterns) pattern-or-patterns (list pattern-or-patterns)))) (save-excursion (dolist (pattern patterns) (goto-char (point-min)) (while (re-search-forward pattern nil t 1) (unless (outline-invisible-p) (funcall function))))))) (defun outline-agenda-setup () (setq-local outline-regexp org-super-agenda-header-prefix) (setq-local outline-level #'outline-level) (setq-local outline-heading-alist `((,org-super-agenda-header-prefix . 1))) (outline-auto-agenda org-super-agenda-auto-fold-groups #'outline-hide-subtree)) (add-hook 'org-agenda-finalize-hook #'outline-agenda-setup)

Stats

Basic origami.el repo stats
1
30
4.8
about 1 month ago

elp-revive/origami.el is an open source project licensed under MIT License which is an OSI approved license.

The primary programming language of origami.el is Emacs Lisp.


Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com