| Watch this three minute video or view the concise notes below it for some very nice tips on handling buffers. http://vimcasts.org/episodes/working-with-buffers/ > You can quickly jump between the active buffer and the alternate buffer using the command <CTRL-^>. Pressing it again takes you back to where you were before. If you don't like the <CTRL-^> command for this, you could map it to something else, such as the tab key, with a line in your .vimrc: nnoremap <TAB> <C-^>
----> There's no single de-facto manager that's used by 90% of all vimmers. Most recently updated plugins work with each of the managers. I use a handful of plugins with Pathogen, but the same plugins could be used with another manager. However, the latest release of Vim now includes a built in plugin system, does that satisfy your need to have one blessed version? https://shapeshed.com/vim-packages/ ---- > 20 different buffer navigations Keep in mind, all these commands can be shortened to the smallest unique prefix. So with `:bn` and `:bp` you can go forward and backward. But if you don't like typing three characters, just sacrifice something else by remapping it in your .vimrc! ---- > toggling between two open files, a pretty common use case When I am working on two files at once, I'll usually put them both up at the same time. If I have "a.txt" open and I also want to work on "b.txt" I can type `:vsp b.txt" and now I have them up side-by-side. I can switch between them with whatever command I have set up to do that. |
> However, the latest release of Vim now includes a built in plugin system, does that satisfy your need to have one blessed version?
It absolutely does. I'm going to try it out!