From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44033) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f2HrT-0000Ep-FZ for guix-patches@gnu.org; Sat, 31 Mar 2018 10:52:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f2HrP-0006mQ-2I for guix-patches@gnu.org; Sat, 31 Mar 2018 10:52:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:53409) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1f2HrO-0006m7-Ug for guix-patches@gnu.org; Sat, 31 Mar 2018 10:52:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1f2HrO-0003ZO-Lw for guix-patches@gnu.org; Sat, 31 Mar 2018 10:52:02 -0400 Subject: [bug#31004] [PATCH] gnu: Add emacs-anzu Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43888) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f2HqP-0008QN-8N for guix-patches@gnu.org; Sat, 31 Mar 2018 10:51:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f2HqK-0005gF-VF for guix-patches@gnu.org; Sat, 31 Mar 2018 10:51:01 -0400 Received: from mail-pf0-x22d.google.com ([2607:f8b0:400e:c00::22d]:33529) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1f2HqK-0005dc-O5 for guix-patches@gnu.org; Sat, 31 Mar 2018 10:50:56 -0400 Received: by mail-pf0-x22d.google.com with SMTP id f15so7187704pfn.0 for ; Sat, 31 Mar 2018 07:50:56 -0700 (PDT) Received: from sam ([45.124.157.152]) by smtp.gmail.com with ESMTPSA id 2sm10185974pft.33.2018.03.31.07.50.51 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 31 Mar 2018 07:50:53 -0700 (PDT) Date: Sat, 31 Mar 2018 20:20:49 +0530 From: Sohom Bhattacharjee Message-ID: <20180331145049.GA7955@sam> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 31004@debbugs.gnu.org * gnu/packages/emacs.scm (emacs-anzu): New variable. --- gnu/packages/emacs.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index ab0f9edb5..07e195654 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -7414,3 +7414,23 @@ the same values you get in a terminal.") "Deft is an Emacs mode for quickly browsing, filtering, and editing directories of plain text notes, inspired by Notational Velocity.") (license license:bsd-3))) + +(define-public emacs-anzu + (package + (name "emacs-anzu") + (version "0.62") + (source + (origin + (method url-fetch) + (uri (string-append "http://stable.melpa.org/packages/anzu-" + version ".el")) + (sha256 + (base32 + "1h3p1x2h2830n83dzvkh8p2892n34a95x7aavhi10p7vfjk406fd")))) + (build-system emacs-build-system) + (home-page "https://github.com/syohex/emacs-anzu") + (synopsis "Show number of matches in mode-line while searching") + (description + "Anzu provides a minor mode which displays 'current match/total +matches' in the mode-line in various search modes. Emacs port of Anzu.zim") + (license license:gpl3+))) -- 2.16.2