using System.Collections.Generic; using Rune = System.Rune; namespace Terminal.Gui { /// /// Generates autocomplete based on a given cursor location within a string /// public interface ISuggestionGenerator { /// /// Generates autocomplete based on a given /// IEnumerable GenerateSuggestions (AutocompleteContext context); bool IsWordChar (Rune rune); } }