using System.Collections.Generic; using Rune = System.Rune; namespace Terminal.Gui { public interface ISuggestionGenerator { /// /// Populates with all strings in that /// match with the current cursor position/text in the . /// /// The column offset. Current (zero - default), left (negative), right (positive). IEnumerable GenerateSuggestions (List currentLine, int idx); bool IsWordChar (Rune rune); } }