mirror of
https://github.com/spectreconsole/spectre.console.git
synced 2026-02-10 04:13:32 +01:00
* Revertf6e1368: "Fixes problems with extension blocks and params keyword" * Revert7965168: "Add modernization commit to .git-blame-ignore-revs" * Revert3f57df5: "Modernization of the code base"
16 lines
471 B
C#
16 lines
471 B
C#
namespace Spectre.Console;
|
|
|
|
/// <summary>
|
|
/// A console capable of writing ANSI escape sequences.
|
|
/// </summary>
|
|
public static partial class AnsiConsole
|
|
{
|
|
/// <summary>
|
|
/// Switches to an alternate screen buffer if the terminal supports it.
|
|
/// </summary>
|
|
/// <param name="action">The action to execute within the alternate screen buffer.</param>
|
|
public static void AlternateScreen(Action action)
|
|
{
|
|
Console.AlternateScreen(action);
|
|
}
|
|
} |