为什么 Vim 会随机输出这些字符串?

Why would Vim be outputting these strings randomly?

window中随机写入了一行文字。它发生在 a) 当我开始 Vim 和 b) 其他一些随机时间。在启动时,我收到 "Press ENTER or type command to continue" 提示,我认为这是由此 "message".

触发的

a) 当我开始时 Vim

filetype=  scrolloff=0
Press ENTER or type command to continue

b) 随机

此文本显示在 window 中,看起来它是文件的一部分,但实际上并不存在。如果我滚动,它就会消失(但有时会比其他文本更烦人)。

我试过的

  1. set shortmess=atI

    很难确定,但我认为这是由那里的 filetype= scrolloff=0 奇怪的东西触发的。

  2. 检查寄存器(没有那个文本)

接下来我应该检查什么?

我用这个命令创建了一个日志:

 vim -V9vim.log

logs 没有说明任何问题,但我发现有两行造成了这个问题:

set scrolloff
set filetype

我将其更改为:

set scrolloff=1
filetype plugin on