guix-commits
[Top][All Lists]
Advanced

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

73/88: gnu: Add emacs-highlight-defined.


From: Oleg Pykhalov
Subject: 73/88: gnu: Add emacs-highlight-defined.
Date: Wed, 2 May 2018 13:21:17 -0400 (EDT)

wigust pushed a commit to branch master
in repository guix.

commit b91e17243187d342a5d67cb61934dfb6567acfc6
Author: Oleg Pykhalov <address@hidden>
Date:   Wed May 2 19:12:21 2018 +0300

    gnu: Add emacs-highlight-defined.
    
    * gnu/packages/emacs.scm (emacs-highlight-defined): New public variable.
---
 gnu/packages/emacs.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 40fd389..cc21ad0 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -9875,3 +9875,25 @@ compilation/grep buffers.  Works with @code{wgrep}, 
@code{ack}, @code{ag},
 @code{shift-number-up} to increase and @code{shift-number-down} to
 decrease the number at point.")
     (license license:gpl3+)))
+
+(define-public emacs-highlight-defined
+  (package
+    (name "emacs-highlight-defined")
+    (version "0.1.5")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "https://github.com/Fanael/highlight-defined/archive/";
+             version ".tar.gz"))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1ryd66989b5byqdw8jmjrjf0c78iiz72wibld750skcnj5h5h506"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/Fanael/highlight-defined";)
+    (synopsis "Syntax highlighting of known Elisp symbols")
+    (description "Minor mode providing syntax highlighting of known Emacs Lisp
+symbols.  Currently the code distinguishes Lisp functions, built-in functions,
+macros, faces and variables.  To enable call @code{highlight-defined-mode}. ")
+    (license license:gpl3+)))



reply via email to

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