guix-commits
[Top][All Lists]
Advanced

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

80/88: gnu: Add emacs-on-screen.


From: Oleg Pykhalov
Subject: 80/88: gnu: Add emacs-on-screen.
Date: Wed, 2 May 2018 13:21:19 -0400 (EDT)

wigust pushed a commit to branch master
in repository guix.

commit 47667501f5e7b1b47e1e6764fa02014c2d9e3fc1
Author: Oleg Pykhalov <address@hidden>
Date:   Wed May 2 19:13:46 2018 +0300

    gnu: Add emacs-on-screen.
    
    * gnu/packages/emacs.scm (emacs-on-screen): New public variable.
---
 gnu/packages/emacs.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index fdcd769..77a4f15 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -10031,3 +10031,26 @@ bookmarks and history.")
     (description "This package provides functions to generate random words
 using user-provided rules.")
     (license license:gpl3+)))
+
+(define-public emacs-on-screen
+  (package
+    (name "emacs-on-screen")
+    (version "1.3.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "http://elpa.gnu.org/packages/on-screen-"; version ".el"))
+       (file-name (string-append name "-" version ".el"))
+       (sha256
+        (base32
+         "15d18mjgv1pnwl6kf3pr5w64q1322p1l1qlfvnckglwmzy5sl2qv"))))
+    (build-system emacs-build-system)
+    (home-page
+     "https://github.com/michael-heerdegen/on-screen.el";)
+    (synopsis "Guide your eyes while scrolling")
+    (description
+     "Scrolling can be distracting because your eyes may lose
+orientation.  This library implements a minor mode that highlights
+the previously visible buffer part after each scroll.")
+    (license license:gpl3+)))



reply via email to

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