[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add emacs-auto-dictionary-mode.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add emacs-auto-dictionary-mode. |
Date: |
Tue, 11 Feb 2020 10:47:04 -0500 |
This is an automated email from the git hooks/post-receive script.
mothacehe pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 4835f86 gnu: Add emacs-auto-dictionary-mode.
4835f86 is described below
commit 4835f862925e8aa06b7e23d5dd5d08ceb25a02dc
Author: Mathieu Othacehe <address@hidden>
AuthorDate: Tue Feb 11 16:46:36 2020 +0100
gnu: Add emacs-auto-dictionary-mode.
* gnu/packages/emacs-xyz.scm (emacs-auto-dictionary-mode): New variable.
---
gnu/packages/emacs-xyz.scm | 24 +++++++++++++++++++++++-
1 file changed, 23 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index faf2d7a..1b864d8 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -18,7 +18,7 @@
;;; Copyright © 2016, 2017, 2018 Alex Vong <address@hidden>
;;; Copyright © 2016, 2017, 2018, 2019 Arun Isaac <address@hidden>
;;; Copyright © 2017 Christopher Baines <address@hidden>
-;;; Copyright © 2017, 2018, 2019 Mathieu Othacehe <address@hidden>
+;;; Copyright © 2017, 2018, 2019, 2020 Mathieu Othacehe <address@hidden>
;;; Copyright © 2017, 2018, 2019 Clément Lassieur <address@hidden>
;;; Copyright © 2017 Vasile Dumitrascu <address@hidden>
;;; Copyright © 2017, 2018 Kyle Meyer <address@hidden>
@@ -21431,3 +21431,25 @@ or post you read or write, and collects them in a
SQLite database, which can
be easily and quickly queried to determine the completion list. It optionally
uses BBDB and Message-X.")
(license license:gpl3+))))
+
+(define-public emacs-auto-dictionary-mode
+ (package
+ (name "emacs-auto-dictionary-mode")
+ (version "1.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/nschum/auto-dictionary-mode")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "191294k92qp8gmfypf0q8j8qrym96aqikzvyb9p03wqvbr3r1dsk"))))
+ (build-system emacs-build-system)
+ (home-page "http://nschum.de/src/emacs/auto-dictionary/")
+ (synopsis "Automatic dictionary switcher for Emacs spell checking")
+ (description "@code{auto-dictionary} is a minor mode that hooks into
+Flyspell's on-the-fly spell checking and extends these checks to also detect
+language. Auto-dictionary then sets @code{ispell-dictionary} to use the
+detected language.")
+ (license license:gpl2+)))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add emacs-auto-dictionary-mode.,
guix-commits <=