* master@head: completing-read behavior change?
@ 2020-01-22 21:42 T.V Raman
2020-01-22 21:56 ` Dmitry Gutov
0 siblings, 1 reply; 11+ messages in thread
From: T.V Raman @ 2020-01-22 21:42 UTC (permalink / raw)
To: emacs-devel
Could anyone tell me what changed in the behavior of completing-read
between
* (HEAD detached at 561ba2633e)
and HEAD on master branch?
From what I observe, something low-level appears to have changed how
completing-read produces its final minibuffer prompt when ido is active.
Background:
From emacspeak, I used to be able to speak the ido choices
intelligently, now I just get the number of available choices spoken --
and the code on the emacspeak end hasn't changed.
--
Id: kg:/m/0285kf1
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: master@head: completing-read behavior change?
2020-01-22 21:42 master@head: completing-read behavior change? T.V Raman
@ 2020-01-22 21:56 ` Dmitry Gutov
2020-01-22 23:53 ` T.V Raman
2020-01-22 23:55 ` T.V Raman
0 siblings, 2 replies; 11+ messages in thread
From: Dmitry Gutov @ 2020-01-22 21:56 UTC (permalink / raw)
To: T.V Raman, emacs-devel
Hi T.V.,
On 23.01.2020 0:42, T.V Raman wrote:
> Could anyone tell me what changed in the behavior of completing-read
> between
> * (HEAD detached at 561ba2633e)
> and HEAD on master branch?
I can't find the revision 561ba2633e, but it could be commit
3b0938c0420de2b845e7e8f8fbbb57ddc61718f2.
> From what I observe, something low-level appears to have changed how
> completing-read produces its final minibuffer prompt when ido is active.
The aforementioned commit changed the way Ido's suggestions are
displayed: instead of being plainly 'insert'-ed, they are now an
'after-string' property on an overlay placed at the end of the prompt
and input.
> From emacspeak, I used to be able to speak the ido choices
> intelligently, now I just get the number of available choices spoken
> -- and the code on the emacspeak end hasn't changed.
Does emacspeak work okay with icomplete-mode? The above is how the
latter has been displaying its suggestions for some time.
This change has been made for better compatibility with the new way
messages are displayed while minibuffer is active (they are displayed
using the same mechanism). So I think emacspeak should learn to
understand this kind of rendering either way.
Sorry for the inconvenience, though.
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: master@head: completing-read behavior change?
2020-01-22 21:56 ` Dmitry Gutov
@ 2020-01-22 23:53 ` T.V Raman
2020-01-23 0:01 ` T.V Raman
2020-01-22 23:55 ` T.V Raman
1 sibling, 1 reply; 11+ messages in thread
From: T.V Raman @ 2020-01-22 23:53 UTC (permalink / raw)
To: dgutov; +Cc: raman, emacs-devel
Yes, you nailed the problem. I need to update how I handle ido-exhibit
in my after advice. Thanks for the prompt help and pointer.
Dmitry Gutov writes:
> Hi T.V.,
>
> On 23.01.2020 0:42, T.V Raman wrote:
> > Could anyone tell me what changed in the behavior of completing-read
> > between
> > * (HEAD detached at 561ba2633e)
> > and HEAD on master branch?
>
> I can't find the revision 561ba2633e, but it could be commit
> 3b0938c0420de2b845e7e8f8fbbb57ddc61718f2.
>
> > From what I observe, something low-level appears to have changed how
> > completing-read produces its final minibuffer prompt when ido is active.
>
> The aforementioned commit changed the way Ido's suggestions are
> displayed: instead of being plainly 'insert'-ed, they are now an
> 'after-string' property on an overlay placed at the end of the prompt
> and input.
>
> > From emacspeak, I used to be able to speak the ido choices
> > intelligently, now I just get the number of available choices spoken
> > -- and the code on the emacspeak end hasn't changed.
>
> Does emacspeak work okay with icomplete-mode? The above is how the
> latter has been displaying its suggestions for some time.
>
> This change has been made for better compatibility with the new way
> messages are displayed while minibuffer is active (they are displayed
> using the same mechanism). So I think emacspeak should learn to
> understand this kind of rendering either way.
>
> Sorry for the inconvenience, though.
--
Id: kg:/m/0285kf1
--
Id: kg:/m/0285kf1
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: master@head: completing-read behavior change?
2020-01-22 23:53 ` T.V Raman
@ 2020-01-23 0:01 ` T.V Raman
2020-01-23 0:03 ` T.V Raman
0 siblings, 1 reply; 11+ messages in thread
From: T.V Raman @ 2020-01-23 0:01 UTC (permalink / raw)
To: raman; +Cc: dgutov, emacs-devel
Found it -- ido--overlay (apologies)
I was looking at the wrong branch earlier. Now have it working in both
emacs 27 and emacs 28
T.V Raman writes:
> Yes, you nailed the problem. I need to update how I handle ido-exhibit
> in my after advice. Thanks for the prompt help and pointer.
> Dmitry Gutov writes:
> > Hi T.V.,
> >
> > On 23.01.2020 0:42, T.V Raman wrote:
> > > Could anyone tell me what changed in the behavior of completing-read
> > > between
> > > * (HEAD detached at 561ba2633e)
> > > and HEAD on master branch?
> >
> > I can't find the revision 561ba2633e, but it could be commit
> > 3b0938c0420de2b845e7e8f8fbbb57ddc61718f2.
> >
> > > From what I observe, something low-level appears to have changed how
> > > completing-read produces its final minibuffer prompt when ido is active.
> >
> > The aforementioned commit changed the way Ido's suggestions are
> > displayed: instead of being plainly 'insert'-ed, they are now an
> > 'after-string' property on an overlay placed at the end of the prompt
> > and input.
> >
> > > From emacspeak, I used to be able to speak the ido choices
> > > intelligently, now I just get the number of available choices spoken
> > > -- and the code on the emacspeak end hasn't changed.
> >
> > Does emacspeak work okay with icomplete-mode? The above is how the
> > latter has been displaying its suggestions for some time.
> >
> > This change has been made for better compatibility with the new way
> > messages are displayed while minibuffer is active (they are displayed
> > using the same mechanism). So I think emacspeak should learn to
> > understand this kind of rendering either way.
> >
> > Sorry for the inconvenience, though.
>
> --
> Id: kg:/m/0285kf1
>
> --
> Id: kg:/m/0285kf1
--
Id: kg:/m/0285kf1
--
Id: kg:/m/0285kf1
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: master@head: completing-read behavior change?
2020-01-23 0:01 ` T.V Raman
@ 2020-01-23 0:03 ` T.V Raman
2020-01-23 13:58 ` Dmitry Gutov
0 siblings, 1 reply; 11+ messages in thread
From: T.V Raman @ 2020-01-23 0:03 UTC (permalink / raw)
To: raman; +Cc: dgutov, emacs-devel
Fix is here for the curious:-)
https://github.com/tvraman/emacspeak/blob/master/lisp/emacspeak-ido.el#L85
T.V Raman writes:
> Found it -- ido--overlay (apologies)
>
> I was looking at the wrong branch earlier. Now have it working in both
> emacs 27 and emacs 28
> T.V Raman writes:
> > Yes, you nailed the problem. I need to update how I handle ido-exhibit
> > in my after advice. Thanks for the prompt help and pointer.
> > Dmitry Gutov writes:
> > > Hi T.V.,
> > >
> > > On 23.01.2020 0:42, T.V Raman wrote:
> > > > Could anyone tell me what changed in the behavior of completing-read
> > > > between
> > > > * (HEAD detached at 561ba2633e)
> > > > and HEAD on master branch?
> > >
> > > I can't find the revision 561ba2633e, but it could be commit
> > > 3b0938c0420de2b845e7e8f8fbbb57ddc61718f2.
> > >
> > > > From what I observe, something low-level appears to have changed how
> > > > completing-read produces its final minibuffer prompt when ido is active.
> > >
> > > The aforementioned commit changed the way Ido's suggestions are
> > > displayed: instead of being plainly 'insert'-ed, they are now an
> > > 'after-string' property on an overlay placed at the end of the prompt
> > > and input.
> > >
> > > > From emacspeak, I used to be able to speak the ido choices
> > > > intelligently, now I just get the number of available choices spoken
> > > > -- and the code on the emacspeak end hasn't changed.
> > >
> > > Does emacspeak work okay with icomplete-mode? The above is how the
> > > latter has been displaying its suggestions for some time.
> > >
> > > This change has been made for better compatibility with the new way
> > > messages are displayed while minibuffer is active (they are displayed
> > > using the same mechanism). So I think emacspeak should learn to
> > > understand this kind of rendering either way.
> > >
> > > Sorry for the inconvenience, though.
> >
> > --
> > Id: kg:/m/0285kf1
> >
> > --
> > Id: kg:/m/0285kf1
>
> --
> Id: kg:/m/0285kf1
>
> --
> Id: kg:/m/0285kf1
--
Id: kg:/m/0285kf1
--
Id: kg:/m/0285kf1
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: master@head: completing-read behavior change?
2020-01-23 0:03 ` T.V Raman
@ 2020-01-23 13:58 ` Dmitry Gutov
2020-01-23 14:44 ` T.V Raman
2020-01-23 16:45 ` T.V Raman
0 siblings, 2 replies; 11+ messages in thread
From: Dmitry Gutov @ 2020-01-23 13:58 UTC (permalink / raw)
To: T.V Raman; +Cc: emacs-devel
Hi T.V.,
On 23.01.2020 3:03, T.V Raman wrote:
> Fix is here for the curious:-)
> https://github.com/tvraman/emacspeak/blob/master/lisp/emacspeak-ido.el#L85
You haven't answered my question about support for icomplete-mode. Do
you only support Ido?
I'm happy you made it work, but I think it would be better to handle the
general approach. Meaning, instead of hardcoding the names of (private)
variables, scan the minibuffer, look for the overlays with after-string,
order by 'priority', and read their contents one after another.
The new set-minibuffer-message feature uses the same approach if
minibuffer is active. Although, in that case, you could advise this
function, or set an alternative handler via the set-message-function
variable (also just added in Emacs 27).
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: master@head: completing-read behavior change?
2020-01-23 13:58 ` Dmitry Gutov
@ 2020-01-23 14:44 ` T.V Raman
2020-01-23 14:49 ` Dmitry Gutov
2020-01-23 16:45 ` T.V Raman
1 sibling, 1 reply; 11+ messages in thread
From: T.V Raman @ 2020-01-23 14:44 UTC (permalink / raw)
To: Dmitry Gutov; +Cc: emacs-devel
Dmitry Gutov <dgutov@yandex.ru> writes:
will check icomplete when I have time, I frankly dont remember any more
whether I handle it. What would be a simple test usage for icomplete? I
have ido, flx-ido and ido-ubiquitous (can never remember its new name)
active, so as you can guess my emacs world is complex.> Hi T.V.,
>
> On 23.01.2020 3:03, T.V Raman wrote:
>> Fix is here for the curious:-)
>> https://github.com/tvraman/emacspeak/blob/master/lisp/emacspeak-ido.el#L85
>
> You haven't answered my question about support for icomplete-mode. Do
> you only support Ido?
>
> I'm happy you made it work, but I think it would be better to handle
> the general approach. Meaning, instead of hardcoding the names of
> (private) variables, scan the minibuffer, look for the overlays with
> after-string, order by 'priority', and read their contents one after
> another.
>
> The new set-minibuffer-message feature uses the same approach if
> minibuffer is active. Although, in that case, you could advise this
> function, or set an alternative handler via the set-message-function
> variable (also just added in Emacs 27).
>
--
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: master@head: completing-read behavior change?
2020-01-23 13:58 ` Dmitry Gutov
2020-01-23 14:44 ` T.V Raman
@ 2020-01-23 16:45 ` T.V Raman
2020-01-23 17:19 ` Dmitry Gutov
1 sibling, 1 reply; 11+ messages in thread
From: T.V Raman @ 2020-01-23 16:45 UTC (permalink / raw)
To: dgutov; +Cc: raman, emacs-devel
I just checked, emacspeak doesn't have explicit code for
icomplete. That said, I'll implement the more general approach you
suggest at some point -- likely by creating an Emacspeak-specific
minibuffer-contents equivalent. Is there some generic test I can use
to spot the new pattern vs old?
Dmitry Gutov writes:
> Hi T.V.,
>
> On 23.01.2020 3:03, T.V Raman wrote:
> > Fix is here for the curious:-)
> > https://github.com/tvraman/emacspeak/blob/master/lisp/emacspeak-ido.el#L85
>
> You haven't answered my question about support for icomplete-mode. Do
> you only support Ido?
>
> I'm happy you made it work, but I think it would be better to handle the
> general approach. Meaning, instead of hardcoding the names of (private)
> variables, scan the minibuffer, look for the overlays with after-string,
> order by 'priority', and read their contents one after another.
>
> The new set-minibuffer-message feature uses the same approach if
> minibuffer is active. Although, in that case, you could advise this
> function, or set an alternative handler via the set-message-function
> variable (also just added in Emacs 27).
--
Id: kg:/m/0285kf1
--
Id: kg:/m/0285kf1
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: master@head: completing-read behavior change?
2020-01-22 21:56 ` Dmitry Gutov
2020-01-22 23:53 ` T.V Raman
@ 2020-01-22 23:55 ` T.V Raman
1 sibling, 0 replies; 11+ messages in thread
From: T.V Raman @ 2020-01-22 23:55 UTC (permalink / raw)
To: dgutov; +Cc: raman, emacs-devel
P.S. I also see that ido-exhibit now dropped the line that used to
crete/delete overlays -- so I am a bit confused.
Where is the overlay stored (ie var name)
--
Id: kg:/m/0285kf1
--
Id: kg:/m/0285kf1
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2020-01-23 17:19 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-01-22 21:42 master@head: completing-read behavior change? T.V Raman
2020-01-22 21:56 ` Dmitry Gutov
2020-01-22 23:53 ` T.V Raman
2020-01-23 0:01 ` T.V Raman
2020-01-23 0:03 ` T.V Raman
2020-01-23 13:58 ` Dmitry Gutov
2020-01-23 14:44 ` T.V Raman
2020-01-23 14:49 ` Dmitry Gutov
2020-01-23 16:45 ` T.V Raman
2020-01-23 17:19 ` Dmitry Gutov
2020-01-22 23:55 ` T.V Raman
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.