无法使用curses滚动主窗口

时间:2013-04-14 17:45:50

标签: ruby curses

我刚遇到与这个家伙相同的问题:http://computer-programming-forum.com/39-ruby/b4065fe9ccbcae86.htm

Curses(与Window相同)有方法scrl(n)scroll(),要启用它们,我必须.scrollok true。问题是与Window不同:

temp.rb:8:in `<main>': undefined method `scrollok' for Curses:Module (NoMethodError)

我必须添加一个scrollok包装器.....如果你不能在第一时间启用滚动,那么有一个scrl()包装器有什么用?

这是一个错误还是什么?

1 个答案:

答案 0 :(得分:1)

在发布问题时,我想出了一个解决方案。

您不必制作包装器。只需以这种方式使用.scrollok

Curses.stdscr.scrollok true