guix-commits
[Top][All Lists]
Advanced

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

01/03: gnu: Add emacs-selectrum.


From: guix-commits
Subject: 01/03: gnu: Add emacs-selectrum.
Date: Tue, 7 Apr 2020 05:00:12 -0400 (EDT)

ngz pushed a commit to branch master
in repository guix.

commit 1c17e087c2bb83c4a830c5a77f356114f371b0aa
Author: Nicolas Goaziou <address@hidden>
AuthorDate: Tue Apr 7 10:30:23 2020 +0200

    gnu: Add emacs-selectrum.
    
    * gnu/packages/emacs-xyz.scm (emacs-selectrum): New variable.
---
 gnu/packages/emacs-xyz.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 7b2cb00..b72e8a5 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -5375,6 +5375,32 @@ extensions for @code{ivy-mode} and @code{company-mode} 
that make use of the
 library.")
       (license license:gpl3+))))
 
+(define-public emacs-selectrum
+  (package
+    (name "emacs-selectrum")
+    (version "1.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/raxod502/selectrum.git";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "105zl102dwbzvk50xh6b824nq6p24kxhky18ghdnk5yi5sv620lm"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/raxod502/selectrum/";)
+    (synopsis "Incremental narrowing in Emacs")
+    (description "Selectrum is a solution for incremental narrowing in
+Emacs, replacing Helm, Ivy, and IDO.  Its design philosophy is based
+on choosing the right abstractions and prioritizing consistency and
+predictability over special-cased improvements for particular cases.
+As such, Selectrum follows existing Emacs conventions where they exist
+and are reasonable, and it declines to implement features which have
+marginal benefit compared to the additional complexity of a new
+interface.")
+    (license license:expat)))
+
 (define-public emacs-smartparens
   (package
     (name "emacs-smartparens")



reply via email to

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