class DEBUGGER__::UI_LocalConsole

def width

def width
  if (w = IO.console_size[1]) == 0 # for tests PTY
    80
  else
    w
  end
end