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#58728: 29.0.50; Minibuffer does not follow tabs Date: Thu, 27 Oct 2022 10:52:03 +0300 Organization: LINKOV.NET Message-ID: <86ilk5vh3w.fsf@mail.linkov.net> References: <87h6zvnrdl.fsf@gmail.com> <86bkpz7m2s.fsf@mail.linkov.net> <87tu3rcqkf.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="14186"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (x86_64-pc-linux-gnu) Cc: 58728@debbugs.gnu.org To: Visuwesh Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Thu Oct 27 09:58:23 2022 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 1onxmQ-0003Wf-8C for geb-bug-gnu-emacs@m.gmane-mx.org; Thu, 27 Oct 2022 09:58:22 +0200 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1onxlB-0002bl-4g; Thu, 27 Oct 2022 03:57:05 -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 1onxl9-0002UO-5v for bug-gnu-emacs@gnu.org; Thu, 27 Oct 2022 03:57:03 -0400 Original-Received: from debbugs.gnu.org ([209.51.188.43]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1onxl8-0008Qa-US for bug-gnu-emacs@gnu.org; Thu, 27 Oct 2022 03:57:02 -0400 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1onxl8-0000OF-H2 for bug-gnu-emacs@gnu.org; Thu, 27 Oct 2022 03:57:02 -0400 X-Loop: help-debbugs@gnu.org Resent-From: Juri Linkov Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Thu, 27 Oct 2022 07:57:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 58728 X-GNU-PR-Package: emacs Original-Received: via spool by 58728-submit@debbugs.gnu.org id=B58728.16668573701439 (code B ref 58728); Thu, 27 Oct 2022 07:57:02 +0000 Original-Received: (at 58728) by debbugs.gnu.org; 27 Oct 2022 07:56:10 +0000 Original-Received: from localhost ([127.0.0.1]:56054 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1onxkH-0000N9-Rw for submit@debbugs.gnu.org; Thu, 27 Oct 2022 03:56:10 -0400 Original-Received: from relay7-d.mail.gandi.net ([217.70.183.200]:59291) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1onxkC-0000MZ-4m for 58728@debbugs.gnu.org; Thu, 27 Oct 2022 03:56:08 -0400 Original-Received: (Authenticated sender: juri@linkov.net) by mail.gandi.net (Postfix) with ESMTPSA id 9EFC72000A; Thu, 27 Oct 2022 07:55:57 +0000 (UTC) In-Reply-To: <87tu3rcqkf.fsf@gmail.com> (Visuwesh's message of "Wed, 26 Oct 2022 07:08:08 +0530") 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: , Original-Sender: "bug-gnu-emacs" Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.bugs:246276 Archived-At: >> 1. emacs -Q >> 2. C-x t 2 >> 3. M-x >> 4. C-x t o >> 5. M-: >> 6. C-x t o >> >> what minibuffer should be displayed? Probably the last. > > I think showing the most "recent" minibuffer should be shown. If we go > by minibuffer-depth-indicate-mode, then the most "recent" minibuffer > would be the labelled 2. As soon as someone will point out to a function that does this, it could be immediately added to tab-bar.el. What is needed is something to work in such situation: 1. emacs -Q 2. M-: (setq wc (current-window-configuration)) 3. M-x 4. M-: (set-window-configuration wc) 5. ??? 6. The minibuffer with its window is restored and reactivated. Maybe something like what frameset-to-register/jump-to-register does, that restores the minibuffer, but doesn't reactivate it.