By default, suggestions are only filtered based on whether they begin with the given search string or not. However, it would be more useful and flexible when there would a CLI option "--fulltext" which, when given, determines that a suggestion item does even "match" when the given search string appears anywhere inside it.
Example: In the Turtle bundle, there is also an auto-completion for so called "prefix directives". They look like this @prefix abc: <http://example.com/a/b/c#>.. When making use of auto-completion, it might be not only relevant to filter suggestions by the prefix abc but also by the URI it stands for. That's a perfect use-case for such a filter flag.
By default, suggestions are only filtered based on whether they begin with the given search string or not. However, it would be more useful and flexible when there would a CLI option "--fulltext" which, when given, determines that a suggestion item does even "match" when the given search string appears anywhere inside it.
Example: In the Turtle bundle, there is also an auto-completion for so called "prefix directives". They look like this
@prefix abc: <http://example.com/a/b/c#>.. When making use of auto-completion, it might be not only relevant to filter suggestions by the prefixabcbut also by the URI it stands for. That's a perfect use-case for such a filter flag.