Support Type Suggest, Highlight, and Complete Component #457
khalidabuhakmeh
started this conversation in
Ideas
Replies: 1 comment
-
As an addendum, possibly each element in the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Given you have a table of results, allow users to "search" through the table by typing. With each character, highlight found results. For example, take a look at the .NET CLI. This table of templates will get big and unmanageable.
Maybe this is a
SearchAndComplete
feature that can wrap other components. It sits and waits for input. As you type, it redraws the nested elements and highlights text.Highlighted values can be cycled through and used as the input.
Finally, the
SearchAndComplete
feature allows for "templated input".In this case we
dotnet new {selection}
. Once selected (the user hits enter), the input is replaced with the value.Beta Was this translation helpful? Give feedback.
All reactions