From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:43276) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jLzwh-0006Qb-PU for guix-patches@gnu.org; Tue, 07 Apr 2020 21:56:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jLzwg-0002rH-Lg for guix-patches@gnu.org; Tue, 07 Apr 2020 21:56:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:39688) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jLzwg-0002r4-IG for guix-patches@gnu.org; Tue, 07 Apr 2020 21:56:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jLzwg-0005ZA-HQ for guix-patches@gnu.org; Tue, 07 Apr 2020 21:56:02 -0400 Subject: [bug#40501] [PATCH] gnu: Add emacs-diredfl. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:42609) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jLzvf-0006H1-L8 for guix-patches@gnu.org; Tue, 07 Apr 2020 21:55:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jLzve-0001hq-Hp for guix-patches@gnu.org; Tue, 07 Apr 2020 21:54:59 -0400 Received: from mail-oi1-x22a.google.com ([2607:f8b0:4864:20::22a]:41107) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jLzve-0001hF-CS for guix-patches@gnu.org; Tue, 07 Apr 2020 21:54:58 -0400 Received: by mail-oi1-x22a.google.com with SMTP id k9so3351302oia.8 for ; Tue, 07 Apr 2020 18:54:58 -0700 (PDT) Received: from ecenter ([2600:1700:83b0:8bd0::479]) by smtp.gmail.com with ESMTPSA id h15sm6048085oib.41.2020.04.07.18.54.56 for (version=TLS1_2 cipher=ECDHE-ECDSA-CHACHA20-POLY1305 bits=256/256); Tue, 07 Apr 2020 18:54:56 -0700 (PDT) From: John Soo Date: Tue, 07 Apr 2020 18:54:55 -0700 Message-ID: <877dyqu4gg.fsf@asu.edu> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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: 40501@debbugs.gnu.org --=-=-= Content-Type: text/plain Hi Guix, diredfl provides more font locking in dired buffers. It is a more minimal version of dired-hacks. I linted this and the formatting should be up to snuff this time. Thanks a lot! - John --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-Add-emacs-diredfl.patch Content-Description: emacs-diredfl >From 05d17a17986e2ec8c662b923e7ac5e556103e683 Mon Sep 17 00:00:00 2001 From: John Soo Date: Tue, 7 Apr 2020 01:06:18 -0700 Subject: [PATCH] gnu: Add emacs-diredfl. * gnu/packages/emacs-xyz.scm (emacs-diredfl): New variable. --- gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index ab7f9b8a18..6c4536df79 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -9224,6 +9224,28 @@ information inside the dired buffer.") @code{sudo} privileges.") (license license:wtfpl2))) +(define-public emacs-diredfl + (package + (name "emacs-diredfl") + (version "0.4") + (source + (origin + (method git-fetch) + (uri + (git-reference + (url "https://github.com/purcell/diredfl") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zb2lz7rp58zqvpniqcsmqabi7nqg2d8bfd0hgmq68bn2hd25b5z")))) + (build-system emacs-build-system) + (home-page "https://github.com/purcell/diredfl") + (synopsis "Extra Emacs font lock rules for a more colourful dired") + (description "This is adapted from the extra font lock rules provided by +Drew Adams' dired+ package, but published via a modern means, and with support +for older Emacsen removed.") + (license license:gpl3+))) + (define-public emacs-memoize (package (name "emacs-memoize") -- 2.26.0 --=-=-=--