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.
每次打开项目/目录时,我都会使用完全相同的 vim 窗格布局:
--------- | |pane| |pane|pane| | |pane| ---------
我希望能够使用此布局打开一个新的 vim 会话,右侧的所有窗格将以:Explore模式启动,而左侧窗格将以:terminal模式启动(特定于 neovim)。
:Explore
:terminal
有没有办法为新会话创建 vim“布局”?
尝试这样的事情:
nvim -c ':vsp|Explore|sp|Explore|sp|Explore'
将终端放在前面很棘手,因为它会窃取焦点。
现在我有了一个想法。
nvim -c ':vsp|Explore|sp|Explore|sp|Explore|wincmd w|te'