Method: Curses.noraw

Defined in:
ext/curses/curses.c

.norawObject

Put the terminal out of raw mode.

see Curses.raw for more detail



539
540
541
542
543
544
545
# File 'ext/curses/curses.c', line 539

static VALUE
curses_noraw(VALUE obj)
{
    curses_stdscr();
    noraw();
    return Qnil;
}