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#45177: 27.1; Access to invoking top level command in minibuffer Date: Sat, 12 Dec 2020 22:14:48 +0200 Organization: LINKOV.NET Message-ID: <87zh2i94vr.fsf@mail.linkov.net> References: <87czzg8489.fsf@gnus.org> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="20061"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (x86_64-pc-linux-gnu) Cc: 45177@debbugs.gnu.org, clemera@posteo.net To: Lars Ingebrigtsen Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Sat Dec 12 22:10:34 2020 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 1koC9y-00058P-In for geb-bug-gnu-emacs@m.gmane-mx.org; Sat, 12 Dec 2020 22:10:34 +0100 Original-Received: from localhost ([::1]:35378 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1koC9x-00085Z-KV for geb-bug-gnu-emacs@m.gmane-mx.org; Sat, 12 Dec 2020 16:10:33 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:59596) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1koC8c-00082w-3w for bug-gnu-emacs@gnu.org; Sat, 12 Dec 2020 16:09:10 -0500 Original-Received: from debbugs.gnu.org ([209.51.188.43]:35382) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1koC8W-00024N-En for bug-gnu-emacs@gnu.org; Sat, 12 Dec 2020 16:09:09 -0500 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1koC8W-0004wK-Ad for bug-gnu-emacs@gnu.org; Sat, 12 Dec 2020 16:09:04 -0500 X-Loop: help-debbugs@gnu.org Resent-From: Juri Linkov Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sat, 12 Dec 2020 21:09:04 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 45177 X-GNU-PR-Package: emacs Original-Received: via spool by 45177-submit@debbugs.gnu.org id=B45177.160780731518851 (code B ref 45177); Sat, 12 Dec 2020 21:09:04 +0000 Original-Received: (at 45177) by debbugs.gnu.org; 12 Dec 2020 21:08:35 +0000 Original-Received: from localhost ([127.0.0.1]:46908 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1koC83-0004tz-2o for submit@debbugs.gnu.org; Sat, 12 Dec 2020 16:08:35 -0500 Original-Received: from relay4-d.mail.gandi.net ([217.70.183.196]:46195) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1koC80-0004tj-Rc for 45177@debbugs.gnu.org; Sat, 12 Dec 2020 16:08:33 -0500 X-Originating-IP: 91.129.99.98 Original-Received: from mail.gandi.net (m91-129-99-98.cust.tele2.ee [91.129.99.98]) (Authenticated sender: juri@linkov.net) by relay4-d.mail.gandi.net (Postfix) with ESMTPSA id 06084E0004; Sat, 12 Dec 2020 21:08:25 +0000 (UTC) In-Reply-To: <87czzg8489.fsf@gnus.org> (Lars Ingebrigtsen's message of "Fri, 11 Dec 2020 21:41:58 +0100") 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" Xref: news.gmane.io gmane.emacs.bugs:195900 Archived-At: >> For command based settings it would be nice to be able to have >> access to the top level command from which the current minibuffer >> session was invoked from. This should also work with multiple minibuffer >> invokations during a command. Using `minibuffer-setup-hook' to save >> `real-this-command' does not work, for example with: >> >> ```elisp >> (defun example-command () >> (interactive) >> (read-string "Example: ") >> (message "%s" real-this-command)) >> ``` >> >> `real-this-command' will be `exit-minibuffer' after the `read-string' >> so any minibuffer invokation within that command afterwards will no >> longer know about `example-command'. > > Hm... I'm not quite sure "the top level command" is a well-defined > concept? You can enter a number of nested recursive edits, and I think > what you probably want is the innermost command that invoked a recursive > edit? > > So perhaps it would make sense for Frecursive_edit (or some other handy > function when entering the minibuffer) to let-bind a new variable (say, > `this-recursive-command'?) to the value of `real-this-command'? Or set a (mini)buffer-local variable in minibuffer-setup-hook.