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#69578: 30.0.50; tab-bar-mode binding of (control tab) not always useful Date: Wed, 06 Mar 2024 19:45:46 +0200 Organization: LINKOV.NET Message-ID: <86zfvbxpmz.fsf@mail.linkov.net> References: Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="571"; 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: 69578@debbugs.gnu.org To: Gerd =?UTF-8?Q?M=C3=B6llmann?= Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Wed Mar 06 18:49:54 2024 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 1rhvOs-000AWD-Dg for geb-bug-gnu-emacs@m.gmane-mx.org; Wed, 06 Mar 2024 18:49:54 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1rhvOc-0007z4-PP; Wed, 06 Mar 2024 12:49:39 -0500 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 1rhvOV-0007wr-V9 for bug-gnu-emacs@gnu.org; Wed, 06 Mar 2024 12:49:32 -0500 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 1rhvOV-0005hA-Mi for bug-gnu-emacs@gnu.org; Wed, 06 Mar 2024 12:49:31 -0500 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1rhvP0-0005FD-Js for bug-gnu-emacs@gnu.org; Wed, 06 Mar 2024 12:50:02 -0500 X-Loop: help-debbugs@gnu.org Resent-From: Juri Linkov Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Wed, 06 Mar 2024 17:50:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 69578 X-GNU-PR-Package: emacs Original-Received: via spool by 69578-submit@debbugs.gnu.org id=B69578.170974739020109 (code B ref 69578); Wed, 06 Mar 2024 17:50:02 +0000 Original-Received: (at 69578) by debbugs.gnu.org; 6 Mar 2024 17:49:50 +0000 Original-Received: from localhost ([127.0.0.1]:51351 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rhvOn-0005EF-Nl for submit@debbugs.gnu.org; Wed, 06 Mar 2024 12:49:49 -0500 Original-Received: from relay6-d.mail.gandi.net ([217.70.183.198]:54887) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rhvOl-0005DC-LS for 69578@debbugs.gnu.org; Wed, 06 Mar 2024 12:49:48 -0500 Original-Received: by mail.gandi.net (Postfix) with ESMTPSA id DCA7AC0003; Wed, 6 Mar 2024 17:48:49 +0000 (UTC) In-Reply-To: ("Gerd =?UTF-8?Q?M=C3=B6llmann?="'s message of "Wed, 06 Mar 2024 08:56:56 +0100") 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:281121 Archived-At: > tab-bar--define-keys makes bindings for TAG like this: > > (unless (global-key-binding [(control tab)]) > (global-set-key [(control tab)] #'tab-next)) > (unless (global-key-binding [(control shift tab)]) > (global-set-key [(control shift tab)] #'tab-previous)) > (unless (global-key-binding [(control shift iso-lefttab)]) > (global-set-key [(control shift iso-lefttab)] #'tab-previous)) > > These bindings stop taking effect if a mode has its own bindings for > control tab, for instance. A prominent example is Magit. The developers of Org mode took courage and replaced their C-TAB bindings with C-c C-TAB: https://lists.gnu.org/archive/html/bug-gnu-emacs/2020-09/msg00341.html The developers of Magit could do the same.