class HrrRbSsh::Connection::RequestHandler::ReferenceWindowChangeRequestHandler

Public Class Methods

new() click to toggle source
# File lib/hrr_rb_ssh/connection/request_handler/reference_window_change_request_handler.rb, line 11
def initialize
  @proc = Proc.new { |context|
    context.vars[:ptm].winsize = [context.terminal_height_rows, context.terminal_width_columns, context.terminal_width_pixels, context.terminal_height_pixels]
  }
end