Eclipse 控制台滚动锁定按钮有什么作用?

发布于 2024-10-15 09:50:20 字数 108 浏览 1 评论 0原文

我很确定我知道它应该做什么,但是启用/禁用在我的 Eclipse 设置(3.6)中绝对没有区别。
即使我没有定位到完整显示最后一个屏幕,新输出仍然会滚动控制台。

我错过了什么吗?

Im pretty sure i know what its supposed to do, but enabling/disabling makes absolutely no difference in my eclipse setup (3.6).
New output still scrolls the console even if i am not positioned to show the last screen full.

Am I missing anything?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

另类 2024-10-22 09:50:20

它看起来像 bug 316981

我们发现滚动锁存在一个可以理解但意外的问题
功能,通过 SSH 将其公开给以下 shell 脚本:

#!/bin/sh
X=1
while true ; do
  X=`expr $X + 1`
  echo "Hello $X"
done

运行此脚本时,“滚动锁定”功能不起作用。
测试用例的问题在于,新行打印得如此之快,以至于终端
小部件的缓冲区已满。

修复:

Window > Preferences > Terminal : 
Set "Terminal Buffer" to 100000 lines

现在,即使在这种情况下,滚动锁也能按预期工作(直到 100000 行)
达到)。

It looks like bug 316981:

We have found an understandable but unexpected issue with the scroll lock
feature, by exposing it via SSH to the following shell script:

#!/bin/sh
X=1
while true ; do
  X=`expr $X + 1`
  echo "Hello $X"
done

Running this script, the "scroll lock" feature does not work.
The problem with the test case is that new lines are printed so quickly, that the Terminal
Widget's buffer runs over.

Fix:

Window > Preferences > Terminal : 
Set "Terminal Buffer" to 100000 lines

Now, scroll lock works as expected even with this case (until 100000 lines are
reached).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文