我通常喜欢设置scrolloff=99
,但在阅读帮助文件时这并不理想。如何检测我何时在那里,以便我可以关闭scrolloff
?
答案 0 :(得分:3)
Vim对于名为filetype
的帮助文档有一个特殊的help
。因此,您可以使用autocmd
在.vimrc
中有条件地设置它。这需要有条件地使用BufEnter
来匹配'help'
文件类型。
autocmd BufEnter * if &filetype == 'help'| set scrolloff=0 | else | set scrolloff=99 | endif