我通常喜欢设置 scrolloff=99
,但在阅读帮助文件时并不理想。我如何才能检测到我何时在那里,以便关闭 scrolloff
?
最佳答案
Vim 有一个特殊的 filetype
用于帮助文档,称为 help
。因此,您可以使用 autocmd
在 .vimrc
中有条件地设置它。这需要有条件地使用 BufEnter
来匹配 'help'
文件类型。
autocmd BufEnter * if &filetype == 'help'| set scrolloff=0 | else | set scrolloff=99 | endif
关于vim - 如何检测我何时查看 vim 的文档?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23476923/