guix-patches
[Top][All Lists]
Advanced

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

bug#26268: [PATCH] gnu: Add emacs-idle-highlight.


From: Vasile Dumitrascu
Subject: bug#26268: [PATCH] gnu: Add emacs-idle-highlight.
Date: Mon, 27 Mar 2017 01:39:12 +0200

    * gnu/packages/emacs.scm (emacs-idle-highlight): New variable.
---
 gnu/packages/emacs.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 4fe2ffa4d..02f92bc26 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -3960,3 +3960,24 @@ abbreviation and automatically expand it into function 
templates.")
    (description "@code{emacs-memoize} is an Emacs library for
 memoizing functions.")
    (license license:unlicense)))
+
+(define-public emacs-idle-highlight
+  (package
+    (name "emacs-idle-highlight")
+    (version "20120920.948")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "http://melpa.org/packages/idle-highlight-mode-";
+             version ".el"))
+       (sha256
+        (base32
+         "083ihf97a20l9pbqgn9jh6vdx97z40mp2fhi17qs90a16hpfhx5j"))))
+    (build-system emacs-build-system)
+    (home-page "http://www.emacswiki.org/cgi-bin/wiki/IdleHighlight";)
+    (synopsis "Highlights all occurences of the word the point is on")
+    (description
+     "@code{idle-highlight-mode} sets an idle timer that highlights all
+occurences in the buffer of the word under the point.")
+    (license license:gpl3+)))
-- 
2.11.0






reply via email to

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