Is it possible to split a window in Vim/Vi with a terminal?
In Vim 8, if it is compiled with the +terminal option, you can split the current window horizontally and add a terminal with the command :terminal or :term for short-hand. If you want to split the window vertically, the best way I know is to do a regular vertical split with :vsp or <c-w>v. Then, … Read more