guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: Add emacs-eshell-syntax-highlighting.


From: guix-commits
Subject: branch master updated: gnu: Add emacs-eshell-syntax-highlighting.
Date: Wed, 16 Sep 2020 16:08:15 -0400

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

ngz pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 67b1ca4  gnu: Add emacs-eshell-syntax-highlighting.
67b1ca4 is described below

commit 67b1ca4283533abebeea715d90f67f353748e1f2
Author: Morgan Smith <Morgan.J.Smith@outlook.com>
AuthorDate: Tue Sep 15 08:57:34 2020 -0400

    gnu: Add emacs-eshell-syntax-highlighting.
    
    * gnu/packages/emacs-xyz.scm (emacs-eshell-syntax-highlighting): New 
variable.
    
    Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
---
 gnu/packages/emacs-xyz.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 46af734..f27c6fa 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -16924,6 +16924,27 @@ visiting the bookmark, a new @code{eshell} session 
will be opened in the
 appropriate directory if no @code{eshell} session is active.")
     (license license:gpl3+)))
 
+(define-public emacs-eshell-syntax-highlighting
+  (package
+    (name "emacs-eshell-syntax-highlighting")
+    (version "0.2")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/akreisher/eshell-syntax-highlighting";)
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0id27874wsb5y169030x8g1ldpa1mnskv1s2j3ygqiyh5fvpfash"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/akreisher/eshell-syntax-highlighting";)
+    (synopsis "Add syntax highlighting to Eshell")
+    (description
+     "This package highlights user commands at the Eshell interactive prompt
+to provide feedback on the validity of commands and syntax.")
+    (license license:gpl3+)))
+
 (define-public emacs-eshell-z
   (package
     (name "emacs-eshell-z")



reply via email to

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