diff options
author | Mathieu Lirzin <mthl@gnu.org> | 2018-04-01 00:00:29 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-04-04 14:39:39 +0200 |
commit | c3581ef968c7bcdd992b1960a19e3a4bcfa26280 (patch) | |
tree | 44a4977048a448f6b9defb4abec62d517972a968 | |
parent | d56ecf623ec26134d4b1d47017f3530160234143 (diff) | |
download | patches-c3581ef968c7bcdd992b1960a19e3a4bcfa26280.tar patches-c3581ef968c7bcdd992b1960a19e3a4bcfa26280.tar.gz |
gnu: Add emacs-emmet-mode.
* gnu/packages/emacs.scm (emacs-emmet-mode): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/emacs.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 4b750b2081..7c1b190d2d 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -33,6 +33,7 @@ ;;; Copyright © 2017 Mike Gerwitz <mtg@gnu.org> ;;; Copyright © 2017, 2018 Maxim Cournoyer <maxim.cournoyer@gmail.com> ;;; Copyright © 2018 Sohom Bhattacharjee <soham.bhattacharjee15@gmail.com> +;;; Copyright © 2018 Mathieu Lirzin <mthl@gnu.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -7437,3 +7438,23 @@ directories of plain text notes, inspired by Notational Velocity.") matches\" in the mode line in various search modes. This is an Emacs port of Anzu.zim.") (license license:gpl3+))) + +(define-public emacs-emmet-mode + (package + (name "emacs-emmet-mode") + (version "1.0.8") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/smihica/emmet-mode" + "/archive/" version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0g3p22yabfcp98cfv9dgl9il2m2pd53isq2q11vb3s7qyn31f7zj")))) + (build-system emacs-build-system) + (home-page "https://github.com/smihica/emmet-mode") + (synopsis "Unofficial Emmet's support for Emacs") + (description + "Unfold CSS-selector-like expressions to markup. It is intended to be +used with SGML-like languages: XML, HTML, XHTML, XSL, etc.") + (license license:gpl3+))) |