From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:47054) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jD9oV-0000CF-Mj for guix-patches@gnu.org; Sat, 14 Mar 2020 12:39:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jD9oU-00006g-N3 for guix-patches@gnu.org; Sat, 14 Mar 2020 12:39:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:56133) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jD9oU-0008VU-4W for guix-patches@gnu.org; Sat, 14 Mar 2020 12:39:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jD9oU-0004WI-2i for guix-patches@gnu.org; Sat, 14 Mar 2020 12:39:02 -0400 Subject: [bug#40061] Allow double-click select of URL in status Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:59359) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jD7KU-0000eg-Fa for guix-patches@gnu.org; Sat, 14 Mar 2020 09:59:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jD7KT-0002P1-8B for guix-patches@gnu.org; Sat, 14 Mar 2020 09:59:54 -0400 Received: from mx.kolabnow.com ([95.128.36.42]:1860) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1jD7KS-0002N1-JP for guix-patches@gnu.org; Sat, 14 Mar 2020 09:59:53 -0400 Received: from localhost (unknown [127.0.0.1]) by ext-mx-out001.mykolab.com (Postfix) with ESMTP id C5328A83 for ; Sat, 14 Mar 2020 14:59:49 +0100 (CET) Received: from mx.kolabnow.com ([127.0.0.1]) by localhost (ext-mx-out001.mykolab.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id zsfVMiSIn_f4 for ; Sat, 14 Mar 2020 14:59:49 +0100 (CET) Received: from int-mx001.mykolab.com (unknown [10.9.13.1]) by ext-mx-out001.mykolab.com (Postfix) with ESMTPS id 3121F444 for ; Sat, 14 Mar 2020 14:59:48 +0100 (CET) Received: from ext-subm002.mykolab.com (unknown [10.9.6.2]) by int-mx001.mykolab.com (Postfix) with ESMTPS id DB3CC279 for ; Sat, 14 Mar 2020 14:59:48 +0100 (CET) Date: Sat, 14 Mar 2020 15:01:03 +0100 Message-ID: <4553177.31r3eYUQgx@cherry> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="nextPart4227221.LvFx2qVVIh" Content-Transfer-Encoding: 7Bit 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" Reply-to: Tom Zander , Tom Zander via Guix-patches From: Tom Zander via Guix-patches via To: 40061@debbugs.gnu.org This is a multi-part message in MIME format. --nextPart4227221.LvFx2qVVIh Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" While I've been playing with guix today I found this rather trivial patch to be nice. Nice enough to maybe start, even though I'm still waiting for some compiles I'll submit this trivial patch untested. Lets see how the social (as opposed to technical) part works. Is this patch Ok? -- Tom Zander --nextPart4227221.LvFx2qVVIh Content-Disposition: attachment; filename="0001-Allow-double-click-select-of-URL-in-status.patch" Content-Transfer-Encoding: 7Bit Content-Type: text/x-patch; charset="UTF-8"; name="0001-Allow-double-click-select-of-URL-in-status.patch" >From ab690e91f177e0e3efa557fc9ac72ebbc89cb0ad Mon Sep 17 00:00:00 2001 From: TomZ Date: Sat, 14 Mar 2020 14:36:28 +0100 Subject: [PATCH] Allow double-click select of URL in status The status during an install prints download-targets. This adds a space between the URL and the '...' string trailing it so on a terminal you can just double click on the URL to select it. --- guix/status.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guix/status.scm b/guix/status.scm index cbea4151f2..a39d91e0dc 100644 --- a/guix/status.scm +++ b/guix/status.scm @@ -517,7 +517,7 @@ addition to build events." (newline port))) (('download-started item uri _ ...) (erase-current-line*) - (format port (info (G_ "downloading from ~a...")) uri) + (format port (info (G_ "downloading from ~a ...")) uri) (newline port)) (('download-progress item uri (= string->number size) -- 2.25.1 --nextPart4227221.LvFx2qVVIh--