[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add emacs-corfu-candidate-overlay.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add emacs-corfu-candidate-overlay. |
Date: |
Thu, 26 Oct 2023 07:45:19 -0400 |
This is an automated email from the git hooks/post-receive script.
abcdw pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 486dcafb45 gnu: Add emacs-corfu-candidate-overlay.
486dcafb45 is described below
commit 486dcafb4569224ad0c17df7d5bebb210b7be075
Author: Andrew Tropin <andrew@trop.in>
AuthorDate: Thu Oct 26 15:44:39 2023 +0400
gnu: Add emacs-corfu-candidate-overlay.
* gnu/packages/emacs-xyz.scm (emacs-corfu-candidate-overlay): New variable.
---
gnu/packages/emacs-xyz.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 0bf3096216..547cb64878 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -4568,6 +4568,30 @@ 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-corfu-candidate-overlay
+ (package
+ (name "emacs-corfu-candidate-overlay")
+ (version "1.5")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://code.bsdgeek.org/adam/corfu-candidate-overlay")
+ (commit "265438b16155e899d82a869aebca16105665c998")))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0i36g2i7435pby32vcapv4ydmp6rqn0r51qm91wqyzan1f3n3qck"))))
+ (build-system emacs-build-system)
+ (propagated-inputs (list emacs-corfu))
+ (license license:gpl3)
+ (home-page "https://code.bsdgeek.org/adam/corfu-candidate-overlay")
+ (synopsis "Show first Corfu's completion candidate in an overlay while
+ typing")
+ (description
+ "Simple corfu as-you-type auto-suggestion candidate overlay with a visual
+ indication of whether there are many or exactly one candidate available.")))
+
(define-public emacs-cape
(package
(name "emacs-cape")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add emacs-corfu-candidate-overlay.,
guix-commits <=