Earlier quoted context omitted.
I have tried to use Vim a few weeks back. It works great. I have the minibuffexplorer and NERDTree installed. So it was basically like an IDE for me. BUT everything goes downhill when the "window" arrangements are messed up. I am like, WTF did this open in the upper window. HTF do I move this "window/screen" from A to B. When this happens, I restart Vim and then open the files again. Really annoying. I wonder how exp…
:h windows I prefer using tabs with Vim. Here's a short overview: * :tabnew to open a new tab. * :tabe to edit a file in a new tab. * :q or :close to close a tab. * :tabnext and :tabprevious to move between tabs. * Ctrl+PgUp and Ctrl+PgDown are bound to :tabnext and :tabprevious. On my MacBook, I bind those to Cmd+[ and Cmd+]. * And, of course, :h tabs to find help.
map th :tabnext map tl :tabprev map tn :tabnew map td :tabclose