[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/02: gnu: Add emacs-eshell-did-you-mean.
From: |
guix-commits |
Subject: |
02/02: gnu: Add emacs-eshell-did-you-mean. |
Date: |
Wed, 30 Oct 2019 09:40:54 -0400 (EDT) |
ambrevar pushed a commit to branch master
in repository guix.
commit cd6a22d1ac2bc2043f2d20b28fc8de5ec739bff4
Author: Pierre Neidhardt <address@hidden>
Date: Wed Oct 30 14:39:37 2019 +0100
gnu: Add emacs-eshell-did-you-mean.
* gnu/packages/emacs-xyz.scm (emacs-eshell-did-you-mean): New variable.
---
gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 6b586ab..6f584f7 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -19647,3 +19647,25 @@ variable and the @code{minibuffer-line} face.")
info, git branch, git dirty info and git unpushed number. Multiple themes are
available.")
(license license:gpl3+))))
+
+(define-public emacs-eshell-did-you-mean
+ (package
+ (name "emacs-eshell-did-you-mean")
+ (version "0.1")
+ (home-page "https://github.com/xuchunyang/eshell-did-you-mean")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url home-page)
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0v0wshck5n4hspcv1zk1g2nm6xiigcjp16lx0dc8wzkl6ymljvbg"))))
+ (build-system emacs-build-system)
+ (synopsis "Display suggestions on 'command not found' in Eshell")
+ (description "This library adds a list of 'Did you mean...' suggestions
+when the command was not found in Eshell. The suggestions are found after the
+commands that bear resemblance to the input command.")
+ (license license:gpl3+)))