# File lib/rhc/cli.rb, line 22
    def self.set_terminal
      $terminal.wrap_at = HighLine::SystemExtensions.terminal_size.first rescue 80 if $stdin.tty?
      # FIXME: ANSI terminals are not default on windows but we may just be
      #        hitting a bug in highline if windows does support another method.
      #        This is a safe fix for now but needs more research.
      HighLine::use_color = false if RHC::Helpers.windows?
    end