This method is deprecated or moved on the latest stable version.
The last existing version (v1_9_3_392) is shown here.
move(p1, p2)
public
Moves the window so that the upper left-hand corner is at position
(y,x)
static VALUE
window_move(VALUE obj, VALUE y, VALUE x)
{
struct windata *winp;
GetWINDOW(obj, winp);
mvwin(winp->window, NUM2INT(y), NUM2INT(x));
return Qnil;
}