guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: Add emacs-orderless.


From: guix-commits
Subject: branch master updated: gnu: Add emacs-orderless.
Date: Mon, 23 Nov 2020 13:22:09 -0500

This is an automated email from the git hooks/post-receive script.

arunisaac pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new ddfaae3  gnu: Add emacs-orderless.
ddfaae3 is described below

commit ddfaae3136e842dcd910e6a1f5f170bae57e6e9a
Author: Niklas Eklund <niklas.eklund@posteo.net>
AuthorDate: Sun Nov 22 14:31:11 2020 +0100

    gnu: Add emacs-orderless.
    
    * gnu/packages/emacs-xyz.scm (emacs-orderless): New variable.
    
    Signed-off-by: Arun Isaac <arunisaac@systemreboot.net>
---
 gnu/packages/emacs-xyz.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 885487b..998aef8 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -6770,6 +6770,29 @@ marginal benefit compared to the additional complexity 
of a new
 interface.")
     (license license:expat)))
 
+(define-public emacs-orderless
+  (package
+    (name "emacs-orderless")
+    (version "0.5")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/oantolin/orderless";)
+             (commit version)))
+       (sha256
+        (base32 "032lfwflkpaxbcxl4jf438vapswsdagipjczcn30sc4dfdh3p42c"))
+       (file-name (git-file-name name version))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/oantolin/orderless";)
+    (synopsis "Emacs completion style that matches multiple regexps in any 
order")
+    (description "This package provides an orderless completion style that
+divides the pattern into space-separated components, and matches candidates
+that match all of the components in any order.  Each component can match in
+any one of several ways: literally, as a regexp, as an initialism, in the flex
+style, or as multiple word prefixes.")
+    (license license:gpl3+)))
+
 (define-public emacs-smartparens
   (package
     (name "emacs-smartparens")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]