all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Trevor Arjeski <tmarjeski@gmail.com>
To: 71328@debbugs.gnu.org
Cc: Trevor Arjeski <tmarjeski@gmail.com>
Subject: [bug#71328] [PATCH] gnu: add fzf-tab
Date: Sun,  2 Jun 2024 23:20:42 +0300	[thread overview]
Message-ID: <09955ca9942f69fc78ccc8e75921304e5779fb0b.1717359642.git.tmarjeski@gmail.com> (raw)

fzf-tab is a zsh plugin that replaces the default autocompletion with fzf so
that you can use fuzzy finding and multi-selection.

Change-Id: I821eb28c9ac12e8d6449ce7bc389538d260d6091
---
 gnu/packages/shellutils.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/shellutils.scm b/gnu/packages/shellutils.scm
index be8d9bdc25..80ce5df719 100644
--- a/gnu/packages/shellutils.scm
+++ b/gnu/packages/shellutils.scm
@@ -912,3 +912,30 @@ (define-public liquidprompt
                                      \"source \" liquidprompt \"/share/liquidprompt/themes/powerline/powerline.theme\"))))))
 @end example\n")
     (license license:agpl3+)))
+
+(define-public fzf-tab
+  (package
+  (name "fzf-tab")
+  (version "1.1.2")
+  (home-page "https://github.com/Aloxaf/fzf-tab")
+  (source (origin
+            (method git-fetch)
+            (uri (git-reference
+                  (url "https://github.com/Aloxaf/fzf-tab.git")
+                  (commit (string-append "v" version))))
+            (file-name (git-file-name name version))
+            (sha256
+             (base32
+              "061jjpgghn8d5q2m2cd2qdjwbz38qrcarldj16xvxbid4c137zs2"))))
+  (build-system copy-build-system)
+  (arguments
+   '(#:install-plan '(("lib" "/share/zsh/plugins/fzf-tab/")
+                      ("modules" "/share/zsh/plugins/fzf-tab/")
+                      ("fzf-tab.plugin.zsh" "/share/zsh/plugins/fzf-tab/")
+                      ("fzf-tab.zsh" "/share/zsh/plugins/fzf-tab/")
+                      ("README.md" "/share/doc/fzf-tab/"))))
+  (synopsis "Replace zsh's default completion menu with fzf.")
+  (description
+   "Replaces zsh's default completion menu with fzf, enabling fuzzy finding
+and multi-selection.")
+  (license license:expat)))

base-commit: fa7906d64881ee12e0c418136b44c73766e3d169
-- 
2.41.0





             reply	other threads:[~2024-06-03  4:46 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-06-02 20:20 Trevor Arjeski [this message]
2024-06-29  9:57 ` bug#71328: Close Andreas Enge

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=09955ca9942f69fc78ccc8e75921304e5779fb0b.1717359642.git.tmarjeski@gmail.com \
    --to=tmarjeski@gmail.com \
    --cc=71328@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.