[PATCH] gnu: Add emacs-corfu.

  • Done
  • quality assurance status badge
Details
2 participants
  • Nicolas Goaziou
  • Xinglu Chen
Owner
unassigned
Submitted by
Xinglu Chen
Severity
normal
X
X
Xinglu Chen wrote on 18 Apr 2021 10:43
(address . guix-patches@gnu.org)
122d533a5f5e5b06506993d055c3e21510276c99.1618735406.git.public@yoctocell.xyz
* gnu/packages/emacs-xyz.scm (emacs-corfu): New variable.
---
gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)

Toggle diff (37 lines)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index c28169ac97..ebdb613061 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -2511,6 +2511,28 @@ Its features are:
;; Software is dual-licensed.
(license (list license:unlicense license:wtfpl2))))
+(define-public emacs-corfu
+ (package
+ (name "emacs-corfu")
+ (version "0.2")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/minad/corfu")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0xb2si8il6j2mkkiac6pcx2yj83n82j4rsxxcn7gprpzzm1f9j61"))))
+ (build-system emacs-build-system)
+ (home-page "https://github.com/minad/corfu")
+ (synopsis "Completion overlay region function")
+ (description "Corfu enhances the default completion in region function
+with a completion overlay. The current candidates are shown in a popup
+overlay below or above the point. Corfu can be considered the minimalistic
+@code{completion-in-region} counterpart of the Vertico minibuffer UI.")
+ (license license:gpl3+)))
+
(define-public emacs-direnv
(package
(name "emacs-direnv")

base-commit: 868d8068a0b0ea985c6f8d28cb7a436c96bd4de5
--
2.31.1
N
N
Nicolas Goaziou wrote on 23 Apr 2021 11:08
(name . Xinglu Chen)(address . public@yoctocell.xyz)(address . 47866-done@debbugs.gnu.org)
87sg3h2wrn.fsf@nicolasgoaziou.fr
Hello,
Xinglu Chen <public@yoctocell.xyz> writes:

Toggle quote (2 lines)
> * gnu/packages/emacs-xyz.scm (emacs-corfu): New variable.

Applied. Thank you.

Regards,
--
Nicolas Goaziou
Closed
?