Sublime Text 3 - 只滚动到最后一行

Sublime Text 3 - Scroll Only Until the Last Line

每当我将文件一直滚动到文本文件的底部时,它会滚动到远远超出最后一行,我最终会看到一个空白屏幕。
然后,要查看最后几行文本,我必须向上滚动一点,在巨大的日志文件中,它通常会滚动得太多。

我举个例子
当我一直向下滚动时,这是我希望看到的:

560 lorem ipsum
561 lorem ipsum
562 lorem ipsum
563 lorem ipsum
564 lorem ipsum
565 lorem ipsum
566 lorem ipsum
567 lorem ipsum
568 lorem ipsum
569 lorem ipsum
570 lorem ipsum

但我看到的是:

 
 
 
 
 
 
 
 
 
 
 

我知道我可以使用 Ctrl+End。但我想知道的是,是否有办法改变过多滚动 50 多行的烦人行为。

有一个控制此功能的设置,默认情况下打开,但在 MacOS 上默认禁用:

// Set to false to disable scrolling past the end of the buffer.
// On OS X, this value is overridden in the platform specific settings, so
// you'll need to place this line in your user settings to override it.
"scroll_past_end": true,

您可以从菜单中 select Preferences > Settings 并将设置设置为 false 以禁用此行为。