GNU bug report logs -
#70833
29.2.50; project-current: allow control of the prompt string
Previous Next
Reported by: Spencer Baugh <sbaugh <at> janestreet.com>
Date: Wed, 8 May 2024 14:07:01 UTC
Severity: normal
Found in version 29.2.50
Done: Dmitry Gutov <dmitry <at> gutov.dev>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 70833 in the body.
You can then email your comments to 70833 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#70833
; Package
emacs
.
(Wed, 08 May 2024 14:07:01 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Spencer Baugh <sbaugh <at> janestreet.com>
:
New bug report received and forwarded. Copy sent to
bug-gnu-emacs <at> gnu.org
.
(Wed, 08 May 2024 14:07:01 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
It would be nice to be able to control the prompt string that
project-current uses when prompting for a project. Ideally, by passing
a string for the MAYBE-PROMPT argument.
This is useful when using project-current in functions which should
operate on the current project normally, but which might be run outside
any project and in that case will prompt for a project. The user might
be uncertain about what the project they'll input will be used for,
exactly. It's useful for the prompt to remind them.
The prompt could be passed down as an argument to project-prompter, or
bound in a defvar for compatibility - either seems fine to me.
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#70833
; Package
emacs
.
(Fri, 10 May 2024 01:58:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 70833 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Hi Spencer,
On 08/05/2024 17:05, Spencer Baugh wrote:
>
> It would be nice to be able to control the prompt string that
> project-current uses when prompting for a project. Ideally, by passing
> a string for the MAYBE-PROMPT argument.
>
> This is useful when using project-current in functions which should
> operate on the current project normally, but which might be run outside
> any project and in that case will prompt for a project. The user might
> be uncertain about what the project they'll input will be used for,
> exactly. It's useful for the prompt to remind them.
>
> The prompt could be passed down as an argument to project-prompter, or
> bound in a defvar for compatibility - either seems fine to me.
Aside from documentation changes, and the backward incompatibility
pains, this looks easy enough to do.
Why do you say that that the lexical argument is better than a dynamic
one in this case? Just wondering if you see a particular reason.
Also, I wonder if we perhaps should pass not the entire prompt but some
"purpose hint". For example, the argument could look like "find-file",
and then the prompt would be rendered as
Select project [find-file]:
or however else the prompter implementation decides (perhaps it uses
some other different UI where another text arrangement would be better).
Just a thought -- I'm probably over-complicating things.
[maybe-prompt-prompt.diff (text/x-patch, attachment)]
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#70833
; Package
emacs
.
(Fri, 04 Oct 2024 14:07:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 70833 <at> debbugs.gnu.org (full text, mbox):
Dmitry Gutov <dmitry <at> gutov.dev> writes:
> Hi Spencer,
>
> On 08/05/2024 17:05, Spencer Baugh wrote:
>> It would be nice to be able to control the prompt string that
>> project-current uses when prompting for a project. Ideally, by passing
>> a string for the MAYBE-PROMPT argument.
>> This is useful when using project-current in functions which should
>> operate on the current project normally, but which might be run outside
>> any project and in that case will prompt for a project. The user might
>> be uncertain about what the project they'll input will be used for,
>> exactly. It's useful for the prompt to remind them.
>> The prompt could be passed down as an argument to project-prompter,
>> or
>> bound in a defvar for compatibility - either seems fine to me.
>
> Aside from documentation changes, and the backward incompatibility
> pains, this looks easy enough to do.
Your change looks good to me.
> Why do you say that that the lexical argument is better than a dynamic
> one in this case? Just wondering if you see a particular reason.
No particular reason.
> Also, I wonder if we perhaps should pass not the entire prompt but
> some "purpose hint". For example, the argument could look like
> "find-file", and then the prompt would be rendered as
>
> Select project [find-file]:
>
> or however else the prompter implementation decides (perhaps it uses
> some other different UI where another text arrangement would be
> better). Just a thought -- I'm probably over-complicating things.
Hm... I'm not sure about that, but this does make me realize that the
prompt should probably be passed as just "Select project", without the
": ". Then we pass both our prompt and a custom prompt through
format-prompt. That would be useful if a project-prompter ever wants to
support a default value, or a user has redefined format-prompt or
something.
Reply sent
to
Dmitry Gutov <dmitry <at> gutov.dev>
:
You have taken responsibility.
(Mon, 07 Oct 2024 23:14:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
Spencer Baugh <sbaugh <at> janestreet.com>
:
bug acknowledged by developer.
(Mon, 07 Oct 2024 23:14:02 GMT)
Full text and
rfc822 format available.
Message #16 received at 70833-done <at> debbugs.gnu.org (full text, mbox):
On 04/10/2024 17:06, Spencer Baugh wrote:
>> Also, I wonder if we perhaps should pass not the entire prompt but
>> some "purpose hint". For example, the argument could look like
>> "find-file", and then the prompt would be rendered as
>>
>> Select project [find-file]:
>>
>> or however else the prompter implementation decides (perhaps it uses
>> some other different UI where another text arrangement would be
>> better). Just a thought -- I'm probably over-complicating things.
>
> Hm... I'm not sure about that,
Okay, let's not over-complicate things.
If a custom prompter wanted to dispatch on that argument to show a
fancier UI, it might as well check against a set of known string prompts.
> but this does make me realize that the
> prompt should probably be passed as just "Select project", without the
> ": ". Then we pass both our prompt and a custom prompt through
> format-prompt. That would be useful if a project-prompter ever wants to
> support a default value, or a user has redefined format-prompt or
> something.
That makes sense: we don't have a default in the built-in prompters, but
each custom one should be able to choose that for itself.
Now in master, commit 9904376c797.
Note the built-in ones don't use format-prompt yet, for compatibility.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Tue, 05 Nov 2024 12:24:07 GMT)
Full text and
rfc822 format available.
This bug report was last modified 21 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.