Vim 中的分割窗口
在 vim 中对文件进行窗口 vsplit 时,垂直窗口的默认位置是原始窗口的左侧。我需要用“Ctrl+w + Shift + L”手动将其更改为右侧
有没有办法默认在右侧打开垂直分割?
When doing a vsplit of the window on a file in vim, the default positioning of the vertical window is to the left of the original window. I need to manually change it to the right with "Ctrl+w + Shift + L"
Is there any way of opening a vertical split by default to the right?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
会做你想做的事。还有一个用于水平分割的
splitbelow
选项。检查帮助
will do what you want. Also there is a
splitbelow
option which is for horizontal split.Check the help
如果缓冲区中已有文件,则这将
在
N
是缓冲区名称的情况下起作用If you have the files in buffers already, this will work
where
N
is the name of the buffer