>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