[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#55551] [PATCH v2] gnu: Add emacs-corfu-doc.
From: |
jgart |
Subject: |
[bug#55551] [PATCH v2] gnu: Add emacs-corfu-doc. |
Date: |
Sat, 21 May 2022 19:19:31 -0500 |
* gnu/packages/emacs-xyz.scm (emacs-corfu-doc): New variable.
Hi Maxime,
Here's a version 2 of the original patch with your suggestions.
Thank you for the code review.
all best,
jgart
---
gnu/packages/emacs-xyz.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index b2e2cffffe..c271d0521c 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -3134,6 +3134,31 @@ (define-public emacs-corfu
@code{completion-in-region} counterpart of the Vertico minibuffer UI.")
(license license:gpl3+)))
+(define-public emacs-corfu-doc
+ (let ((commit "96b5de8cced0f2c2069748305bb72cf2db77200e")
+ (revision "0"))
+ (package
+ (name "emacs-corfu-doc")
+ (version "0.5.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/galeo/corfu-doc")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "18xgm8jjppdq43i4wa36pbwlh4jxdgkmfbj13w5q4c7b9cy7r3mf"))))
+ (build-system emacs-build-system)
+ (propagated-inputs (list emacs-corfu))
+ (home-page "https://github.com/galeo/corfu-doc")
+ (synopsis "Documentation popup for Corfu")
+ (description
+"The @code{corfu-doc} package provides a way to display a documentation
+popup for completion candidates when using @code{emacs-corfu}. It can
+be regarded as @code{emacs-company-quickhelp} for @code{emacs-corfu}.")
+ (license license:gpl3+))))
+
(define-public emacs-cape
(package
(name "emacs-cape")
--
2.35.3