diff options
author | Ludovic Courtès <ludo@gnu.org> | 2016-06-23 14:01:32 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-06-24 09:01:22 +0200 |
commit | a9fbe94edc5938ba967ea4f56bf2d0797b7c5bee (patch) | |
tree | 79f605de7ebc96586c146a6c22fbd8b0607b565d /gnu/packages/emacs.scm | |
parent | af4569095f457998f020b9620110919f6f2ac106 (diff) | |
download | guix-a9fbe94edc5938ba967ea4f56bf2d0797b7c5bee.tar guix-a9fbe94edc5938ba967ea4f56bf2d0797b7c5bee.tar.gz |
gnu: Add emacs-writegood-mode.
* gnu/packages/emacs.scm (emacs-writegood-mode): New variable.
Diffstat (limited to 'gnu/packages/emacs.scm')
-rw-r--r-- | gnu/packages/emacs.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index a3b0f63388..0c0182db31 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -2384,3 +2384,25 @@ Lua programing language}.") "This Emacs package provides modes for ebuild, eclass, eblit, GLEP42 news items, openrc and runscripts.") (license license:gpl2+))) + +(define-public emacs-writegood-mode + (package + (name "emacs-writegood-mode") + (version "2.0.2") + (home-page "http://github.com/bnbeckwith/writegood-mode") + (source (origin + (method git-fetch) + (uri (git-reference + (url home-page) + (commit (string-append "v" version)))) + (sha256 + (base32 + "1nnjn1r669hvvzfycllwap4w04m8rfsk4nzcg8057m1f263kj31b")) + (file-name (string-append name "-checkout")))) + (build-system emacs-build-system) + (synopsis "Polish up poor writing on the fly") + (description + "This minor mode tries to find and highlight problems with your writing +in English as you type. It primarily detects \"weasel words\" and abuse of +passive voice.") + (license license:gpl3+))) |