module Console::Output::XTerm
Public Class Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/console-1.30.2/lib/console/output/terminal.rb, line 304 def self.new(output, **options) Terminal.new(output, format: Console::Terminal::XTerm, **options) end
Create a new terminal output.
You can use this to force XTerm
output on a non-TTY output streams that support XTerm
escape codes.
@parameter output [IO] The output stream. @parameter options [Hash] Additional options to customize the output. @returns [Console::Output::Terminal] The terminal output instance.