scrl

scrl(num) Class Public methods Scrolls the current window Fixnum num lines. The current cursor position is not changed. For positive num, it scrolls up. For negative num, it scrolls down.

resizeterm

resizeterm(lines, cols) Class Public methods Resize the current term to Fixnum lines and Fixnum cols

resize

resizeterm(lines, cols) Class Public methods Resize the current term to Fixnum lines and Fixnum cols

reset_prog_mode

reset_prog_mode() Class Public methods Reset the current terminal modes to the saved state by the ::def_prog_mode This is done automatically by ::close_screen

refresh

refresh() Class Public methods Refreshes the windows and lines.

raw

raw() Class Public methods Put the terminal into raw mode. Raw mode is similar to ::cbreak mode, in that characters typed are immediately passed through to the user program. The differences are that in raw mode, the interrupt, quit, suspend, and flow control characters are all passed through uninterpreted, instead of generating a signal. The behavior of the BREAK key depends on other bits in the tty driver that are not set by curses.

pair_number

pair_number(attrs) Class Public methods Returns the Fixnum color pair number of attributes attrs.

pair_content

pair_content(pair) Class Public methods Returns a 2 item Array, with the foreground and background color, in pair

noraw

noraw() Class Public methods Put the terminal out of raw mode. see ::raw for more detail

nonl

nonl() Class Public methods Disable the underlying display device to translate the return key into newline on input See ::nl for more detail