namespace StabilityMatrix.Core.Processes; [Flags] public enum AnsiCommand { /// /// Default value /// None = 0, // Erase commands /// /// Erase from cursor to end of line /// ESC[K or ESC[0K /// EraseToEndOfLine = 1 << 0, /// /// Erase from start of line to cursor /// ESC[1K /// EraseFromStartOfLine = 1 << 1, /// /// Erase entire line /// ESC[2K /// EraseLine = 1 << 2, }