在使用VIM时通常会有同事查看多个文件的情况,对此,vim提供了窗口分割的功能,以下是vim窗口分割的常用命令介绍:
^W指按ctrl-W
0、变换水平窗口分割和垂直窗口分割:
:切换两个垂直窗口到水平窗口
^Wt^WK
:切换两个水平窗口到垂直窗口
^Wt^H
where ^W means "hit Ctrl-W". Explanations:
^Wt makes the first (topleft) window current
^WK moves the current window to full-width at the very to...