gnu: Add emacs-parinfer-mode.

* gnu/packages/emacs.scm (emacs-parinfer-mode): New public variable.
This commit is contained in:
Oleg Pykhalov 2018-05-02 19:12:45 +03:00
parent b91e172431
commit 8a2ab51a1b
No known key found for this signature in database
GPG Key ID: 7246E11C69B79569
1 changed files with 25 additions and 0 deletions

View File

@ -9897,3 +9897,28 @@ decrease the number at point.")
symbols. Currently the code distinguishes Lisp functions, built-in functions, symbols. Currently the code distinguishes Lisp functions, built-in functions,
macros, faces and variables. To enable call @code{highlight-defined-mode}. ") macros, faces and variables. To enable call @code{highlight-defined-mode}. ")
(license license:gpl3+))) (license license:gpl3+)))
(define-public emacs-parinfer-mode
(package
(name "emacs-parinfer-mode")
(version "0.4.10")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/DogLooksGood/parinfer-mode/archive/"
"v" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"06ba9qi59sm9ih9m38fbr8kj4qkvrm58n0c0ngfjz60gnr9x9pcv"))))
(propagated-inputs
`(("emacs-dash" ,emacs-dash)
("emacs-rainbow-delimiters" ,emacs-rainbow-delimiters)
("emacs-company" ,emacs-company)))
(build-system emacs-build-system)
(home-page "https://github.com/DogLooksGood/parinfer-mode/")
(synopsis "Lisp structure editing mode")
(description "@code{parinfer-mode} is a proof-of-concept editor
mode for Lisp programming languages. It will infer some changes to
keep Parens and Indentation inline with one another.")
(license license:gpl3+)))