Here is my complete vim configuration files https://bitbucket.org/tristan_ph/dotvim. And my vimrc https://bitbucket.org/tristan_ph/dotvim/src/tip/.vimrc
Here are the steps to re-produce the problem.
- open a multiple using (Im using FuzzyFinder FufCoverageFile).
Ex. listings_controller.rb and listings_controller_spec.rb - List all open buffer (:ls on ex mode), buffer listed as expected.
Output: listings_controller.rb and listings_controller_spec.rb - Delete the listing_controler.rb buffer using :bd (Before I was using Bclose, I thought this is the cause but when I removed it, the problem persist)
- Open listing_controller.rb again using FuzzyFinder FufCoverageFile
- List all open buffer (:ls on ex mode), only listings_controller_spec.rb is on the list.
How do I open the listings_controller.rb that is listed on buffer list (:ls)? Im not sure if this is caused by another plugin.
If you run
:ls!you will also see unlisted buffers. Here you can see the number of the deleted buffer and can switch to it with:b#where # is the buffer number.