Method: Curses.standout

Defined in:
ext/curses/curses.c

.standoutObject

Enables the best highlighting mode of the terminal.

This is equivalent to Curses:Window.attron(A_STANDOUT)

see also Curses::Window.attrset additional information



748
749
750
751
752
753
754
# File 'ext/curses/curses.c', line 748

static VALUE
curses_standout(VALUE obj)
{
    curses_stdscr();
    standout();
    return Qnil;
}