Is it possible to reset the sequence of indices that vim uses for file buffers?
As I open up new files inside vim, the buffer index seems to skip over arbitrary indices. I switch between buffers using b<buffer-index>
, so it helps to have sequential indices for sanity/OCD sake. After a while, I just exit vim and load up the files I'm currently working on via CL and it orders them sequentially, but this is a pain when you have multiple sub-directory paths.
Can I reset the sequence or something?
Solution 1:
No, not without restarting Vim. There are a number of reasons why they cannot be reset, some of them internal, some having to do with avoiding surprises with Vim scripts that store buffer numbers.
Are you aware that you can do :buffer some_partial_buffer_name
to jump to another buffer, as long as the string you supply (some_partial_buffer_name
) is unique?
Solution 2:
Creating a session (:mksession!
), closing vim and opening the session (:so Session.vim
) will reorder you indices starting from 2 (1 is used to source the session).