Comment on Vim Splits – Move Faster and More NaturallyComments−jonzjia13yI forgot where I found it, but someone uses | and _ to split windows in vim, which I find more intuitive and easier to use: " Split window vertically nnoremap <Bar> <C-W>v<C-W><Right> " Split window horizontally nnoremap _ <C-W>s<C-W><Down> " Use tab to toggle between windows nnoremap <Tab> <C-W>w
Comments
I forgot where I found it, but someone uses | and _ to split windows in vim, which I find more intuitive and easier to use: