guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: Add emacs-org-appear.


From: guix-commits
Subject: branch master updated: gnu: Add emacs-org-appear.
Date: Wed, 03 Feb 2021 18:16:40 -0500

This is an automated email from the git hooks/post-receive script.

wigust pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new cc4e2cb  gnu: Add emacs-org-appear.
cc4e2cb is described below

commit cc4e2cb2465012ab4b16198d99c8448c75432b31
Author: Oleg Pykhalov <go.wigust@gmail.com>
AuthorDate: Thu Feb 4 01:52:12 2021 +0300

    gnu: Add emacs-org-appear.
    
    * gnu/packages/emacs-xyz.scm (emacs-org-appear): New variable.
---
 gnu/packages/emacs-xyz.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 6ed85ab..ad97681 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -6424,6 +6424,29 @@ Cucumber tool) user stories.  Also known by the name 
@code{cucumber.el}.")
 @code{org-mode} to be rendered as UTF-8 characters.")
     (license license:gpl3+)))
 
+(define-public emacs-org-appear
+  (let ((commit "19ea96e6e2ce01b8583b25a6e5579f1be207a119")
+        (revision "1"))
+    (package
+      (name "emacs-org-appear")
+      (version (git-version "0.0.1" revision commit)) ;no upstream release
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://github.com/awth13/org-appear";)
+                      (commit commit)))
+                (file-name (git-file-name name version))
+                (sha256
+                 (base32
+                  "064kdb3z4zr9sa7qi5921cqh8vj226ifl8x1bkc59qd9a1p34ghd"))))
+      (build-system emacs-build-system)
+      (home-page "https://github.com/awth13/org-appear";)
+      (synopsis "Make invisible parts of Org fragments appear visible")
+      (description "This package enables automatic visibility toggling of
+org-mode elements depending on cursor position.  Hidden fragment parts appear
+when the cursor enters a fragment and disappear when it leaves.")
+      (license license:expat))))
+
 (define-public emacs-org-drill
   (package
     (name "emacs-org-drill")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]