You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using the default PsySH shell (v0.7), if I try the tab auto-completion when having typed "R", I will get:
RuntimeException
RangeException
RecursiveIteratorIterator
But if I have a service Dummy/Run, it won't appear... I guess it's because the classname matcher doesn't account for the class short names. It would be great if their could be a support for it!
Cheers
The text was updated successfully, but these errors were encountered:
Unfortunately this isn't possible, due to limitations in readline. It strips out completions that don't match the current input, so even if we provide Dummy\Run as a completion for Ru, readline would refuse to show it :(
When using the default PsySH shell (
v0.7
), if I try the tab auto-completion when having typed "R", I will get:RuntimeException
RangeException
RecursiveIteratorIterator
But if I have a service
Dummy/Run
, it won't appear... I guess it's because the classname matcher doesn't account for the class short names. It would be great if their could be a support for it!Cheers
The text was updated successfully, but these errors were encountered: