emacs-bug-tracker
[Top][All Lists]
Advanced

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

bug#57333: closed ([PATCH] gnu: zsh-autopair)


From: GNU bug Tracking System
Subject: bug#57333: closed ([PATCH] gnu: zsh-autopair)
Date: Thu, 08 Sep 2022 12:41:02 +0000

Your message dated Thu, 08 Sep 2022 14:40:26 +0200
with message-id <87bkrqhwed.fsf@gnu.org>
and subject line Re: bug#57333: [PATCH] gnu: zsh-autopair
has caused the debbugs.gnu.org bug report #57333,
regarding [PATCH] gnu: zsh-autopair
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
57333: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=57333
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: zsh-autopair Date: Mon, 22 Aug 2022 13:28:01 +0900
---

This patch added zsh-autopair, a zsh plugin that auto-closes, deletes
and skips over matching delimiters in zsh intelligently to guix.

 gnu/packages/shellutils.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/shellutils.scm b/gnu/packages/shellutils.scm
index 110cbe9fda..295bece21c 100644
--- a/gnu/packages/shellutils.scm
+++ b/gnu/packages/shellutils.scm
@@ -38,6 +38,7 @@ (define-module (gnu packages shellutils)
   #:use-module (guix packages)
   #:use-module (guix download)
   #:use-module (guix git-download)
+  #:use-module (guix build-system copy)
   #:use-module (guix build-system gnu)
   #:use-module (guix build-system go)
   #:use-module (guix build-system python)
@@ -145,6 +146,29 @@ (define-public boxes
 text.")
     (license license:gpl2)))
 
+(define-public zsh-autopair
+  (package
+    (name "zsh-autopair")
+    (version "1.0")
+    (home-page "https://github.com/hlissner/zsh-autopair";)
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/hlissner/zsh-autopair.git";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1h0vm2dgrmb8i2pvsgis3lshc5b0ad846836m62y8h3rdb3zmpy1"))))
+    (build-system copy-build-system)
+    (arguments
+     '(#:install-plan '(("autopair.zsh"
+                         "/share/zsh/plugins/zsh-autopair/zsh-autopair.zsh"))))
+    (synopsis "Auto-close and delete matching delimiters in zsh")
+    (description
+     "A simple plugin that auto-closes, deletes and skips over matching 
delimiters in zsh intelligently.")
+    (license license:expat)))
+
 (define-public zsh-autosuggestions
   (package
     (name "zsh-autosuggestions")
-- 
2.37.2




--- End Message ---
--- Begin Message --- Subject: Re: bug#57333: [PATCH] gnu: zsh-autopair Date: Thu, 08 Sep 2022 14:40:26 +0200 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.1 (gnu/linux)
Hi,

gyara <me@gyara.moe> skribis:

> ---
>
> This patch added zsh-autopair, a zsh plugin that auto-closes, deletes
> and skips over matching delimiters in zsh intelligently to guix.

I tweaked the description¹ and commit log² and applied it.

Thanks!

Ludo’.

¹ https://guix.gnu.org/manual/devel/en/html_node/Synopses-and-Descriptions.html
² https://guix.gnu.org/manual/devel/en/html_node/Submitting-Patches.html


--- End Message ---

reply via email to

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