gnu: Add emacs-vimrc-mode.

* gnu/packages/emacs-xyz.scm (emacs-vimrc-mode): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Brian Leung 2019-04-13 00:56:32 +02:00 committed by Ludovic Courtès
parent 5b947258c8
commit 83b6da9bc4
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -14344,6 +14344,30 @@ (define-public emacs-elisp-docstring-mode
unescaping of quotes.")
(license license:gpl3+))))
(define-public emacs-vimrc-mode
(let ((commit "13bc150a870d5d4a95f1111e4740e2b22813c30e")
(version "0.3.1")
(revision "1"))
(package
(name "emacs-vimrc-mode")
(version (git-version version revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/mcandre/vimrc-mode")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"0026dqs3hwygk2k2xfra90w5sfnxrfj7l69jz7sq5glavbf340pk"))))
(build-system emacs-build-system)
(home-page "https://github.com/mcandre/vimrc-mode")
(synopsis "Major mode for Vimscript")
(description "This package provides font lock and @code{beginning-} and
@code{end-of-defun} functions for Vimscript files.")
(license license:gpl3+))))
(define-public emacs-semantic-refactor
;; The last release, 0.5, was made on 2015-07-26 and there have been 47
;; commits since then.