From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:49220) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ibhQ7-0008Vr-P4 for guix-patches@gnu.org; Mon, 02 Dec 2019 03:51:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ibhQ6-0000fD-N1 for guix-patches@gnu.org; Mon, 02 Dec 2019 03:51:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:59304) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ibhQ6-0000f5-JG for guix-patches@gnu.org; Mon, 02 Dec 2019 03:51:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ibhQ6-0001ij-IW for guix-patches@gnu.org; Mon, 02 Dec 2019 03:51:02 -0500 Subject: [bug#38339] [PATCH 1/2] gnu: Add emacs-shrink-path. Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <87tv6vgs2w.fsf@posteo.net> Date: Mon, 02 Dec 2019 10:07:33 +0100 In-Reply-To: <87tv6vgs2w.fsf@posteo.net> (Brett Gilio's message of "Fri, 22 Nov 2019 22:00:23 -0600") Message-ID: <87immzksdm.fsf@gnu.org> 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: Brett Gilio Cc: 38339@debbugs.gnu.org --=-=-= Content-Type: text/plain Brett Gilio skribis: >>>From 90879f02c521d479630cabe3ff754952e859efd6 Mon Sep 17 00:00:00 2001 > From: Brett Gilio > Date: Fri, 22 Nov 2019 21:50:54 -0600 > Subject: [PATCH 1/2] gnu: Add emacs-shrink-path. > > * gnu/packages/emacs-xyz.scm (emacs-shrink-path): New variable. Applied with the changes below. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index cda832df83..637bf0c9e3 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -19953,6 +19953,7 @@ Google guidelines.") (description "Helm Fish Completion is a Helm interface for Emacs fish-completion. It can be used in both Eshell and M-x shell.") (license license:gpl3+)))) + (define-public emacs-shrink-path (package (name "emacs-shrink-path") @@ -19972,9 +19973,8 @@ fish-completion. It can be used in both Eshell and M-x shell.") `(("emacs-s" ,emacs-s) ("emacs-dash" ,emacs-dash) ("emacs-f" ,emacs-f))) - (home-page - "https://gitlab.com/bennya/shrink-path.el") + (home-page "https://gitlab.com/bennya/shrink-path.el") (synopsis "Fish-style path truncation in emacs-lisp") - (description "Small utility functions that allow for fish-style -trunctated directories in eshell and various modelines.") + (description "This package provides utility functions that allow for +Fish-style truncated directories in eshell and various modelines.") (license license:gpl3+))) --=-=-=--