From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Juri Linkov Newsgroups: gmane.emacs.bugs Subject: bug#65558: 30.0.50; project-other-{window,frame,tab}-command a bit too obtrusive Date: Wed, 30 Aug 2023 19:50:53 +0300 Organization: LINKOV.NET Message-ID: <86ttsg324y.fsf@mail.linkov.net> References: <86ttskikm2.fsf@mail.linkov.net> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="20470"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/30.0.50 (x86_64-pc-linux-gnu) Cc: 65558@debbugs.gnu.org To: Pengji Zhang Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Wed Aug 30 18:53:06 2023 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1qbORG-00058o-4j for geb-bug-gnu-emacs@m.gmane-mx.org; Wed, 30 Aug 2023 18:53:06 +0200 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1qbOR6-00071D-Go; Wed, 30 Aug 2023 12:52:56 -0400 Original-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 1qbOR5-0006zY-3l for bug-gnu-emacs@gnu.org; Wed, 30 Aug 2023 12:52:55 -0400 Original-Received: from debbugs.gnu.org ([2001:470:142:5::43]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1qbOR4-0004CQ-C1 for bug-gnu-emacs@gnu.org; Wed, 30 Aug 2023 12:52:54 -0400 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1qbORB-0007t9-V5 for bug-gnu-emacs@gnu.org; Wed, 30 Aug 2023 12:53:01 -0400 X-Loop: help-debbugs@gnu.org Resent-From: Juri Linkov Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Wed, 30 Aug 2023 16:53:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 65558 X-GNU-PR-Package: emacs Original-Received: via spool by 65558-submit@debbugs.gnu.org id=B65558.169341433630268 (code B ref 65558); Wed, 30 Aug 2023 16:53:01 +0000 Original-Received: (at 65558) by debbugs.gnu.org; 30 Aug 2023 16:52:16 +0000 Original-Received: from localhost ([127.0.0.1]:53879 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qbOQR-0007s7-Rv for submit@debbugs.gnu.org; Wed, 30 Aug 2023 12:52:16 -0400 Original-Received: from relay3-d.mail.gandi.net ([2001:4b98:dc4:8::223]:38537) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qbOQO-0007rs-SI for 65558@debbugs.gnu.org; Wed, 30 Aug 2023 12:52:14 -0400 Original-Received: by mail.gandi.net (Postfix) with ESMTPSA id BC1C960008; Wed, 30 Aug 2023 16:51:57 +0000 (UTC) In-Reply-To: (Pengji Zhang's message of "Tue, 29 Aug 2023 23:58:18 -0400") X-GND-Sasl: juri@linkov.net X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: bug-gnu-emacs@gnu.org List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.bugs:268733 Archived-At: > Thanks for the pointer! That is a long thread so I only skimmed it. I > think you meant this snippet in [0]: > >> (defun project-other-window-command () >> (interactive) >> (other-window-prefix) >> (set-transient-map (make-composed-keymap project-prefix-map >> project-other-window-map))) Exactly. And the same for the frame command in the most recent patch I posted to bug#63648, and I confirm that your bug report is fixed with it. > That indeed fixes the issue. My only concern is that > `other-window-prefix' is a new function introduced in Emacs 28. Indeed, it would take more efforts to provide backward-compatibility for older Emacs versions.