mirror of
				https://github.com/nsnail/spectre.console.git
				synced 2025-11-04 10:35:27 +08:00 
			
		
		
		
	Add support for fake input in asciicast recordings
* Fixes a bug with `SelectionPrompt` and page size. * Allow `IAnsiConsoleInput` to return `null`.
This commit is contained in:
		
				
					committed by
					
						
						Phil Scott
					
				
			
			
				
	
			
			
			
						parent
						
							46abadaccb
						
					
				
				
					commit
					450d87f5d3
				
			@@ -0,0 +1,15 @@
 | 
			
		||||
using Spectre.Console;
 | 
			
		||||
 | 
			
		||||
namespace Generator.Commands
 | 
			
		||||
{
 | 
			
		||||
    public static class AsciiCastExtensions
 | 
			
		||||
    {
 | 
			
		||||
        public static AsciiCastOut WrapWithAsciiCastRecorder(this IAnsiConsole ansiConsole)
 | 
			
		||||
        {
 | 
			
		||||
            AsciiCastOut castRecorder = new(ansiConsole.Profile.Out);
 | 
			
		||||
            ansiConsole.Profile.Out = castRecorder;
 | 
			
		||||
 | 
			
		||||
            return castRecorder;
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user