summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjgart <jgart@dismail.de>2022-05-29 02:50:24 -0500
committerTobias Geerinckx-Rice <me@tobias.gr>2022-05-29 02:00:12 +0200
commit923aad065c66d660a16fe0f187f712d842c9a1a0 (patch)
treef579cc40374f29d599142c86b1afe7fca96e7511
parentebd7627bbc5bdf48440957fcb0fa7d7019d5f5f3 (diff)
downloadguix-patches-923aad065c66d660a16fe0f187f712d842c9a1a0.tar
guix-patches-923aad065c66d660a16fe0f187f712d842c9a1a0.tar.gz
gnu: emacs-corfu: Update to 0.25.
* gnu/packages/emacs-xyz.scm (emacs-corfu): Update to 0.25. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
-rw-r--r--gnu/packages/emacs-xyz.scm15
1 files changed, 8 insertions, 7 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 9764a4c5e1..367e679c5c 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -3111,7 +3111,7 @@ of bibliographic references.")
(define-public emacs-corfu
(package
(name "emacs-corfu")
- (version "0.22")
+ (version "0.25")
(source
(origin
(method git-fetch)
@@ -3120,13 +3120,13 @@ of bibliographic references.")
(commit version)))
(file-name (git-file-name name version))
(sha256
- (base32 "062lxyqh7nfaixmgfgmqfbkainxc8ypdkj6qjq38xigk55s7c5wk"))))
+ (base32 "1brq8dfn4mx5mxyqqikmhwpwlqdrfq1z0wprm6awxr89xk506g77"))))
(build-system emacs-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
- ;; Move the extensions source files to the top level, which is included in
- ;; the EMACSLOADPATH.
+ ;; Move the extensions source files to the top level, which is included
+ ;; in the EMACSLOADPATH.
(add-after 'unpack 'move-source-files
(lambda _
(let ((el-files (find-files "./extensions" ".*\\.el$")))
@@ -3135,9 +3135,10 @@ of bibliographic references.")
el-files)))))))
(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
+ (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+)))