Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法不显示某些窗口的状态行(我正在使用lightline) - MiniBufExplorer 或 NERDTree ?
您可以在本地清除'statusline'设置(空值将调出默认值,但您可以只选择背景颜色组以使其有效消失):
'statusline'
:setlocal statusline=%#Normal#
要将其自动应用于 MiniBufExpl 窗口,您可以使用:autocmd基于特征缓冲区名称(BufWinEnter事件)的 ,或者如果插件设置了'filetype',则在FileType事件上。
:autocmd
BufWinEnter
'filetype'
FileType