在gvim中,如何在显示标签列表时禁用滚动条?
我已经设置了“set guioptions-=l”,但是每当启用标签列表时,左侧滚动条仍然显示并且无法禁用(右侧滚动条切换正常)。另外,如果启用了 taglist,vim 不会在启动时最大化。
如果上述问题无法解决,是否有任何标签列表替代方案。
i've set "set guioptions-=l", but whenever taglist is enabled the left hand scrollbar is still shown and cannot be disabled (right hand scrollbar toggles fine). also, vim wont maximize on start if taglist is enabled.
if the above can't be fixed, are there any taglist altenatives.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
确保您也设置了
guioptions-=L
。如果它没有被删除,那么只要有垂直分割,您就会得到一个左侧滚动条。Make sure you have
guioptions-=L
set too. If it's not removed then you'll get a left hand scrollbar whenever there's a vertical split.我在我的 .gvimrc 中使用它。
I use this in my .gvimrc.