Closed seaneagan closed 10 years ago
Currently with tab-completion the allowed callback must be one of:
allowed
Iterable<String> complete(String text); Future<Iterable<String>> complete(String text);
and it is assumed the output is already filtered (I think?). Should also allow omitting the arg:
Iterable<String> complete(); Future<Iterable<String>> complete();
in which case the returned Iterable will be filtered to match the input text as prefix.
Currently with tab-completion the
allowed
callback must be one of:and it is assumed the output is already filtered (I think?). Should also allow omitting the arg:
in which case the returned Iterable will be filtered to match the input text as prefix.