仅在需要时显示gvim滚动条


3

Gvim有一个默认行为,它始终在所有缓冲区上显示滚动条。

有没有办法只在文档大于框架时才能使滚动条可见?

Answers:


4

将这个在一个启动文件,~/.vimrc~/.gvimrc~/_vimrc或者~/_gvimrc,添加或删除右边的滚动条选项(r从)guioptions(略go)。

au VimEnter * if line('$') > &lines | set go+=r | else | set go-=r | endif
au VimResized * if line('$') > &lines | set go+=r | else | set go-=r | endif

这些自动命令不会涵盖可能导致缓冲区大小超过窗口大小的所有事件,但它会为您提供想法。看到

:help autocommand-events

更多。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.