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
There are some command line programs that are resource intensive to start, most of them provide interactive mode.
My app's interactive mode implementation:
But when I try to add tab completion, I get stuck. Currently, there's no public API to acquire suggestions manually and placing them into console. A build-in interactive mode API would be great.
The text was updated successfully, but these errors were encountered:
An interactive mode would be pretty nice. Making it work well across different kinds of terminals is why we held off on this for now. A better readline implementation would be a good foundation. Related: dotnet/runtime#52374
FWIW, suggestions can be accessed programmatically. You can see examples here:
There are some command line programs that are resource intensive to start, most of them provide interactive mode.
My app's interactive mode implementation:
But when I try to add tab completion, I get stuck. Currently, there's no public API to acquire suggestions manually and placing them into console. A build-in interactive mode API would be great.
The text was updated successfully, but these errors were encountered: