all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#47668] [PATCH] gnu: Add emacs-vertico.
@ 2021-04-09  6:22 Xinglu Chen
  2021-04-10 13:25 ` [bug#47668] [PATCH v2] " Xinglu Chen
  0 siblings, 1 reply; 4+ messages in thread
From: Xinglu Chen @ 2021-04-09  6:22 UTC (permalink / raw)
  To: 47668

* gnu/packages/emacs-xyz.scm (emacs-vertico): 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 8e80ccbb56..f11e5c7ef1 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -27564,3 +27564,27 @@ and prefered services can easily be configured.")
 quasi-prefix map, with many useful bindings.  These bindings are
 shorter than usual, using mostly unprefixed keys.")
     (license license:gpl3+)))
+
+(define-public emacs-vertico
+  (package
+    (name "emacs-vertico")
+    (version "0.2")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/minad/vertico")
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0gvv1yjgq88s9y0fm9r1r270k2sfkfzbd3wcnjq68swjm24mp8h9"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/minad/vertico")
+    (synopsis "Vertical interactive completion")
+    (description "This package provides a minimalistic vertical completion UI,
+which is based on Emacs' default completion system.  By reusing the default
+system, Vertico achieves full compatibility with built-in Emacs commands and
+completion tables.  Vertico is pretty bare-bone and only provides a minimal
+set of commands.  Additional optional enhancements can be provided externally
+by complementary packages.")
+    (license license:gpl3+)))

base-commit: 2afc79b51d0956e5834e81a70692a35cd83e4e87
-- 
2.31.1






^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-04-11  9:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-09  6:22 [bug#47668] [PATCH] gnu: Add emacs-vertico Xinglu Chen
2021-04-10 13:25 ` [bug#47668] [PATCH v2] " Xinglu Chen
2021-04-11  8:45   ` bug#47668: " Nicolas Goaziou
2021-04-11  9:09     ` [bug#47668] " Xinglu Chen

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.