You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
561 B
31 lines
561 B
1 year ago
|
namespace StabilityMatrix.Core.Processes;
|
||
|
|
||
|
[Flags]
|
||
|
public enum AnsiCommand
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Default value
|
||
|
/// </summary>
|
||
|
None = 0,
|
||
|
|
||
|
// Erase commands
|
||
|
|
||
|
/// <summary>
|
||
|
/// Erase from cursor to end of line
|
||
|
/// ESC[K or ESC[0K
|
||
|
/// </summary>
|
||
|
EraseToEndOfLine = 1 << 0,
|
||
|
|
||
|
/// <summary>
|
||
|
/// Erase from start of line to cursor
|
||
|
/// ESC[1K
|
||
|
/// </summary>
|
||
|
EraseFromStartOfLine = 1 << 1,
|
||
|
|
||
|
/// <summary>
|
||
|
/// Erase entire line
|
||
|
/// ESC[2K
|
||
|
/// </summary>
|
||
|
EraseLine = 1 << 2,
|
||
|
}
|