Method: Curses::Window#standout
- Defined in:
- ext/curses/curses.c
#standout ⇒ Object
Enables the best highlighting mode of the terminal.
This is equivalent to Curses::Window.attron(A_STANDOUT)
see also Curses::Window.attrset
2386 2387 2388 2389 2390 2391 2392 2393 2394 |
# File 'ext/curses/curses.c', line 2386
static VALUE
window_standout(VALUE obj)
{
struct windata *winp;
GetWINDOW(obj, winp);
wstandout(winp->window);
return Qnil;
}
|