I checked in a fix[1] to prevent the project tree from merging with
the taglist window if they are configured to display in different
locations.
[1] https://github.com/ervandew/eclim/commit/a00d92b3ef3913228f9edb07a5de3552cb3f005e
> PS: Commit 695d48e did not work, though it is related to Buffers cmd
> as far as I see.
Can you give me an example of a case where it didn't work for you?
> --
> Bora Sahin
--
eric
At some point I may add live updating, but my initial goal for
:Buffers was to just be a more user friendly version of vim's default
:buffers command.
> The case
> in point: Sometimes we tend to open lots of buffers and because of
> this, buffer numbers goes very high. For example, the open buffer
> count is 15 but the biggest buffer number is 43. This causes some
> problems when it comes to buffer management (navigation etc.). If
> there is buffer number recycling, it would be nice. As far as I
> see :Buffers does this. It uses different buffer numbers than Vim's
> numbers and recycles it. For example, if :Buffers number 3 is deleted
> the next Buffer number will be 3 again, but in Vim's point, it will be
> 5 (I assumed their starting number is the same) Do I understand it
> correctly?
Well, :Buffers doesn't display the actual buffer number, so I assume
you're referring to the line number displayed in the :Buffers window.
> PS: "let g:EclimTagListEnabled=0" is the correct setting? I use Eclim
> 1.7.2
That variable no longer exists since eclim's taglist was broken out
into a separate plugin[1].
[1] https://github.com/ervandew/taglisttoo
--
eric
Eclim's :Buffers logic is located here:
https://github.com/ervandew/eclim/blob/master/org.eclim.core/vim/eclim/autoload/eclim/common/buffers.vim
It's also worth noting that there are several other existing buffer
management plugins, so be sure to check some out, there may be one
which already does what you want.
> > > PS: "let g:EclimTagListEnabled=0" is the correct setting? I use Eclim
> > > 1.7.2
> >
> > That variable no longer exists since eclim's taglist was broken out
> > into a separate plugin[1].
> >
> > [1]https://github.com/ervandew/taglisttoo
>
> Okay, I see.
>
> --
> Bora Sahin
--
eric