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#41890: 28.0.50; [PATCH]: Add bindings for project.el Date: Mon, 13 Jul 2020 03:23:33 +0300 Organization: LINKOV.NET Message-ID: <87v9isqm6i.fsf@mail.linkov.net> References: <87mu50b43d.fsf@warpmail.net> <87pn92t1ye.fsf@iris.silentflame.com> <874kqcsnu5.fsf@iris.silentflame.com> <875zasthvn.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="17130"; 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: "Basil L. Contovounesios" , "Philip K." , 41890@debbugs.gnu.org, Sean Whitton To: Dmitry Gutov Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Mon Jul 13 02:45:10 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 1jumaj-0004Jl-SW for geb-bug-gnu-emacs@m.gmane-mx.org; Mon, 13 Jul 2020 02:45:09 +0200 Original-Received: from localhost ([::1]:53650 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jumai-0002Vl-Ra for geb-bug-gnu-emacs@m.gmane-mx.org; Sun, 12 Jul 2020 20:45:08 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:51302) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jumac-0002Va-9M for bug-gnu-emacs@gnu.org; Sun, 12 Jul 2020 20:45:02 -0400 Original-Received: from debbugs.gnu.org ([209.51.188.43]:35651) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1jumac-0006CD-0L for bug-gnu-emacs@gnu.org; Sun, 12 Jul 2020 20:45:02 -0400 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jumab-0007Kc-TH for bug-gnu-emacs@gnu.org; Sun, 12 Jul 2020 20:45: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: Mon, 13 Jul 2020 00:45:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 41890 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch Original-Received: via spool by 41890-submit@debbugs.gnu.org id=B41890.159460110128165 (code B ref 41890); Mon, 13 Jul 2020 00:45:01 +0000 Original-Received: (at 41890) by debbugs.gnu.org; 13 Jul 2020 00:45:01 +0000 Original-Received: from localhost ([127.0.0.1]:47197 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jumab-0007KC-2T for submit@debbugs.gnu.org; Sun, 12 Jul 2020 20:45:01 -0400 Original-Received: from relay4-d.mail.gandi.net ([217.70.183.196]:33467) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jumaY-0007Jy-Vc for 41890@debbugs.gnu.org; Sun, 12 Jul 2020 20:44:59 -0400 X-Originating-IP: 91.129.103.18 Original-Received: from mail.gandi.net (m91-129-103-18.cust.tele2.ee [91.129.103.18]) (Authenticated sender: juri@linkov.net) by relay4-d.mail.gandi.net (Postfix) with ESMTPSA id 46FD0E0003; Mon, 13 Jul 2020 00:44:49 +0000 (UTC) In-Reply-To: (Dmitry Gutov's message of "Mon, 13 Jul 2020 03:13:34 +0300") 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:182959 Archived-At: >> It turned out that the transient map approach didn't work, as it >> ignored the value in default-directory, thus running all commands in >> whatever the current project was. >> Maybe the same function can set default-directory >> to solve the problem to be able to use set-transient-map? > > I think I can explain that: you can set the transient map to handle the > next command, but you can let-bind a variable to only have the binding > have the effect during the next command. > > And you can't exactly setq that value either, or else it would overwrite > the buffer-local default-directory value in the current buffer. project-switch-project could set a new global variable project-default-directory and project commands could use it.