From unknown Fri Aug 15 14:48:28 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#71836 <71836@debbugs.gnu.org> To: bug#71836 <71836@debbugs.gnu.org> Subject: Status: [PATCH mumi] client: Do not print hash symbol in issue number. Reply-To: bug#71836 <71836@debbugs.gnu.org> Date: Fri, 15 Aug 2025 21:48:28 +0000 retitle 71836 [PATCH mumi] client: Do not print hash symbol in issue number. reassign 71836 mumi submitter 71836 jgart severity 71836 normal tag 71836 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Sat Jun 29 02:44:54 2024 Received: (at submit) by debbugs.gnu.org; 29 Jun 2024 06:44:54 +0000 Received: from localhost ([127.0.0.1]:36798 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sNRpO-0005Zb-8f for submit@debbugs.gnu.org; Sat, 29 Jun 2024 02:44:54 -0400 Received: from lists.gnu.org ([209.51.188.17]:52524) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sNRpM-0005ZO-9p for submit@debbugs.gnu.org; Sat, 29 Jun 2024 02:44:52 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1sNRpM-0000K2-3z for guix-patches@gnu.org; Sat, 29 Jun 2024 02:44:52 -0400 Received: from mx2.dismail.de ([159.69.191.136]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1sNRpK-0005Xy-25 for guix-patches@gnu.org; Sat, 29 Jun 2024 02:44:51 -0400 Received: from mx2.dismail.de (localhost [127.0.0.1]) by mx2.dismail.de (OpenSMTPD) with ESMTP id 575b6025 for ; Sat, 29 Jun 2024 08:44:42 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=dismail.de; h=from:to:cc :subject:date:message-id:mime-version:content-transfer-encoding; s=20190914; bh=35/VRFV7ejUCWLRLTiGqIRoMGK8OgieRCm9J6osiuII=; b= UQl7WST0FOjn2842OdePokuDUqUOsOGuD4e26EWQb3ncNr2069EDiGFhG6O8oRQn 1A5U92zTihiXW3uy0bZfFyEE3LoJjIoX/pNpkhWadMViXlj2eRQm7Do/7c1PkhF7 VPRnOYqOyQwjsPxq5CWKpPdxJugBWX8+8TIzpTJ7EJD8tD/HN9UE9lVU5vjiqS3P 7ydkXKbjyjA8Ia7Du4JTPECWVk+0i3QRUw5kDno3rUtVDFOUCa9ZMD8bsvVpwWKN azoQq27s7OuTk63z6ZphK6phs2JU6H2EmS8rymdyl7suzbpSXkugezOV+r65Gj5V DMnhPFT+F+e7uA0tShDkDQ== Received: from smtp1.dismail.de ( [10.240.26.11]) by mx2.dismail.de (OpenSMTPD) with ESMTP id 4b3dade7 for ; Sat, 29 Jun 2024 08:44:42 +0200 (CEST) Received: from smtp1.dismail.de (localhost [127.0.0.1]) by smtp1.dismail.de (OpenSMTPD) with ESMTP id 12bbb777 for ; Sat, 29 Jun 2024 08:44:41 +0200 (CEST) Received: by dismail.de (OpenSMTPD) with ESMTPSA id 61351377 (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO); Sat, 29 Jun 2024 08:44:41 +0200 (CEST) From: jgart To: guix-patches@gnu.org Subject: [PATCH mumi] client: Do not print hash symbol in issue number. Date: Sat, 29 Jun 2024 01:40:01 -0500 Message-ID: <20240629064433.132460-1-jgart@dismail.de> X-Mailer: git-send-email 2.45.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=159.69.191.136; envelope-from=jgart@dismail.de; helo=mx2.dismail.de X-Spam_score_int: -43 X-Spam_score: -4.4 X-Spam_bar: ---- X-Spam_report: (-4.4 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_MED=-2.3, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: jgart X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) Hi, Printing the hash symbol in the mumi search output makes it harder to conveniently double click on the issue number word and copy paste it to another mumi command such as mumi current ISSUE. I think this improves the terminal UI ergonomics. This patch remove the hash symbol that is printed to standard output. WDYT all the best, jgart * mumi/client.scm (list-issue): Do not print hash symbol. --- mumi/client.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mumi/client.scm b/mumi/client.scm index 9231589..77fe07c 100644 --- a/mumi/client.scm +++ b/mumi/client.scm @@ -96,8 +96,7 @@ (define (list-issue issue) "List issue described by ISSUE association list." (display (colorize-string - (string-append "#" - (number->string (assoc-ref issue "number"))) + (number->string (assoc-ref issue "number")) 'YELLOW)) (display " ") (unless (assoc-ref issue "open") -- 2.45.2 From debbugs-submit-bounces@debbugs.gnu.org Fri Oct 04 12:55:43 2024 Received: (at control) by debbugs.gnu.org; 4 Oct 2024 16:55:43 +0000 Received: from localhost ([127.0.0.1]:36370 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1swlah-0000OL-3V for submit@debbugs.gnu.org; Fri, 04 Oct 2024 12:55:43 -0400 Received: from mugam.systemreboot.net ([139.59.75.54]:37888) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1swlad-0000O6-Mj for control@debbugs.gnu.org; Fri, 04 Oct 2024 12:55:41 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=systemreboot.net; s=default; h=Content-Type:MIME-Version:Message-ID:Date: Subject:To:From:Sender:Reply-To:Cc:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=OykA2phTFcw2AwasZaJhTTgjXzvHfJ2zwTGFgZ2dtPM=; b=c3NbCCFNpPjpxpcwA/SA3ROV8d 11Zx5p1iDbcERKUYXCZAsW/WXWvPJLxSXyPfyDQTxwgk93+1u2lrmY4gVoyKG2N7W+VKaZ5tNwFaJ SzB8ODdvW/XeZIPcw5t+h00NP8xVyhb14ZlXFt+GwBfp1s0SqQIffEmgL+n8QElmi+TMrCY8uiX1m tzNihGVZqSFlf9v5wmFfjMcwVNn0x5IcPudc/yPE5aBRGOYYemxPEbvFf74Vc1IUp93kpZj1Kyb0r iJwtLlUZoIKtW6F1TfASWZGB7dYelZTZKl1gRClprJUheJhMah/S6vPAGlQReLyo6/nGQLZvsPh9r d0KTjeYw==; Received: from [192.168.2.1] (port=47238 helo=localhost) by systemreboot.net with esmtpsa (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.98) (envelope-from ) id 1swlUb-000000007Wj-41GS for control@debbugs.gnu.org; Fri, 04 Oct 2024 17:49:26 +0100 From: Arun Isaac To: control@debbugs.gnu.org Subject: Reassign 71836 to mumi Date: Fri, 04 Oct 2024 17:55:26 +0100 Message-ID: <874j5ru7sx.fsf@systemreboot.net> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) package guix-patches reassign 71836 mumi thanks From debbugs-submit-bounces@debbugs.gnu.org Fri Oct 04 20:15:29 2024 Received: (at 71836-done) by debbugs.gnu.org; 5 Oct 2024 00:15:29 +0000 Received: from localhost ([127.0.0.1]:36889 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1swsSH-0006uj-9P for submit@debbugs.gnu.org; Fri, 04 Oct 2024 20:15:29 -0400 Received: from mugam.systemreboot.net ([139.59.75.54]:37870) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1swsSD-0006uY-RW for 71836-done@debbugs.gnu.org; Fri, 04 Oct 2024 20:15:27 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=systemreboot.net; s=default; h=Content-Type:MIME-Version:Message-ID:Date: In-Reply-To:Subject:Cc:To:From:Sender:Reply-To:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:References:List-Id:List-Help: List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=tmEmOvug2OGvqmtv+X+QZyVCa46RHxglxU4PhIk26Aw=; b=hc0NhXXVURlvFYvaik5D5NhKiA Ra8HMKYtNuZoxL9QelVoGamOtsbByoV3xJk2sTEQ2IkFzYiBEqbkUgkQhEEr5SjENPSq8cksU9+pK MDWKIrgLNZfZNaUhTTAmXzDYHxAJBIpqz/3m4DvCkec5MW+/V5Rc1sz2w8+iRy/ObpVN5lE01NQ8B MNnKPNOYftYMhiVuMz3Jrz7AuEvb07y3WIc4woK4yYmoA9zuSREwHof/29xBApIx5XVmJiEo+QG0P yEPUsuIFEal5dEmgIcVw06IhuvZu0H0uVnpTpvsJMusKEIxjl1EYXhV4zMNqpvj6M6XB6X1LHA3Pk Y2sBS0IQ==; Received: from [192.168.2.1] (port=47664 helo=localhost) by systemreboot.net with esmtpsa (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.98) (envelope-from ) id 1swsMB-000000000EC-1eiT; Sat, 05 Oct 2024 01:09:12 +0100 From: Arun Isaac To: 71836-done@debbugs.gnu.org Subject: Re: [PATCH mumi] client: Do not print hash symbol in issue number. In-Reply-To: <874j5ru7sx.fsf@systemreboot.net> Date: Sat, 05 Oct 2024 01:15:12 +0100 Message-ID: <87v7y7s8vj.fsf@systemreboot.net> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 71836-done Cc: Arun Isaac , jgart X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Applied and pushed, thanks! From unknown Fri Aug 15 14:48:28 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sat, 02 Nov 2024 11:24:09 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator