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.
我刚刚使用病原体和子模块将 Powerline 插件安装到我的 vim 中。
电力线仅在有多个缓冲区时可见。当vim中只有一个缓冲区时,我看不到它。
我想知道这是否是一个错误?
您的意思是多个窗口而不是缓冲区。
默认情况下,statusline当只有一个窗口时,vim 设置为不显示。您可以使用以下方法覆盖它:
statusline
set laststatus=2
数字表示这样的行为:
0: never 1: only if there are at least two windows (this one is the default) 2: always
查看:h laststatus更多信息..
:h laststatus