GNU bug report logs - #29514
[PATCH] gnu: Add emacs-evil-matchit.

Previous Next

Package: guix-patches;

Reported by: Mike Gerwitz <mtg <at> gnu.org>

Date: Fri, 1 Dec 2017 01:31:01 UTC

Severity: normal

Tags: patch

Done: ludo <at> gnu.org (Ludovic Courtès)

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 29514 in the body.
You can then email your comments to 29514 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#29514; Package guix-patches. (Fri, 01 Dec 2017 01:31:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Mike Gerwitz <mtg <at> gnu.org>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Fri, 01 Dec 2017 01:31:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Mike Gerwitz <mtg <at> gnu.org>
To: guix-patches <at> gnu.org
Subject: [PATCH] gnu: Add emacs-evil-matchit.
Date: Thu, 30 Nov 2017 20:29:51 -0500
[0001-gnu-Add-emacs-evil-matchit.patch (text/x-diff, inline)]
From 1786492fc43f29bcb44ecfa8bfdeb106b96f94c2 Mon Sep 17 00:00:00 2001
From: Mike Gerwitz <mtg <at> gnu.org>
Date: Wed, 29 Nov 2017 22:42:36 -0500
Subject: [PATCH] gnu: Add emacs-evil-matchit.

* gnu/packages/emacs.scm (emacs-evil-matchit): New variable.
---
 gnu/packages/emacs.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 78728a5b9..c15a50f05 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -30,6 +30,7 @@
 ;;; Copyright © 2017 Mekeor Melire <mekeor.melire <at> gmail.com>
 ;;; Copyright © 2017 Peter Mikkelsen <petermikkelsen10 <at> gmail.com>
 ;;; Copyright © 2017 Tobias Geerinckx-Rice <me <at> tobias.gr>
+;;; Copyright © 2017 Mike Gerwitz <mtg <at> gnu.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -6358,3 +6359,25 @@ Feautures:
 @item Quickly change frame and font sizes.
 @end itemize\n")
     (license license:expat)))
+
+(define-public emacs-evil-matchit
+  (package
+    (name "emacs-evil-matchit")
+    (version "2.2.5")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "https://github.com/redguardtoo/evil-matchit/archive/"
+             version ".tar.gz"))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1hm0k53m7d8zv2pk4p93k5mmilsv1mz7y2z6dqf7r6f0zmncs31a"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/redguardtoo/evil-matchit")
+    (synopsis "Vim matchit ported into Emacs")
+    (description
+     "@code{evil-matchit} is a minor mode for jumping between maching tags in
+evil mode using @kbd{%}.  It is a port of @code{matchit} for Vim.")
+    (license license:gpl3+)))
-- 
2.15.0

[signature.asc (application/pgp-signature, inline)]
[Message part 3 (text/plain, inline)]
-- 
Mike Gerwitz
Free Software Hacker+Activist | GNU Maintainer & Volunteer
GPG: D6E9 B930 028A 6C38 F43B  2388 FEF6 3574 5E6F 6D05
https://mikegerwitz.com
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#29514; Package guix-patches. (Fri, 01 Dec 2017 03:42:02 GMT) Full text and rfc822 format available.

Message #8 received at 29514 <at> debbugs.gnu.org (full text, mbox):

From: Kyle Meyer <kyle <at> kyleam.com>
To: Mike Gerwitz <mtg <at> gnu.org>, 29514 <at> debbugs.gnu.org
Subject: Re: [bug#29514] [PATCH] gnu: Add emacs-evil-matchit.
Date: Thu, 30 Nov 2017 22:41:09 -0500
Mike Gerwitz <mtg <at> gnu.org> writes:

> +    (description
> +     "@code{evil-matchit} is a minor mode for jumping between maching tags in

s/maching/matching/

> +evil mode using @kbd{%}.  It is a port of @code{matchit} for Vim.")

-- 
Kyle




Reply sent to ludo <at> gnu.org (Ludovic Courtès):
You have taken responsibility. (Fri, 01 Dec 2017 10:05:03 GMT) Full text and rfc822 format available.

Notification sent to Mike Gerwitz <mtg <at> gnu.org>:
bug acknowledged by developer. (Fri, 01 Dec 2017 10:05:03 GMT) Full text and rfc822 format available.

Message #13 received at 29514-done <at> debbugs.gnu.org (full text, mbox):

From: ludo <at> gnu.org (Ludovic Courtès)
To: Mike Gerwitz <mtg <at> gnu.org>
Cc: 29514-done <at> debbugs.gnu.org
Subject: Re: [bug#29514] [PATCH] gnu: Add emacs-evil-matchit.
Date: Fri, 01 Dec 2017 11:04:15 +0100
Mike Gerwitz <mtg <at> gnu.org> skribis:

> From 1786492fc43f29bcb44ecfa8bfdeb106b96f94c2 Mon Sep 17 00:00:00 2001
> From: Mike Gerwitz <mtg <at> gnu.org>
> Date: Wed, 29 Nov 2017 22:42:36 -0500
> Subject: [PATCH] gnu: Add emacs-evil-matchit.
>
> * gnu/packages/emacs.scm (emacs-evil-matchit): New variable.

I fixed that typo Kyle reported and committed.

Thanks!

Ludo’.




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Fri, 29 Dec 2017 12:24:05 GMT) Full text and rfc822 format available.

This bug report was last modified 7 years and 225 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.