You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
source._get_buffers calls opts.get_bufnrs() to get the buffers for indexing. It checks if each buffer is in buffers and adds it if it's not there. It fails to remove buffers that were not returned from opts.get_bufnrs().
I was experiencing the performance issues described in #40 and this was the cause. The number of indexed buffers only grows, regardless of what get_bufnrs() returns.
The text was updated successfully, but these errors were encountered:
source._get_buffers
callsopts.get_bufnrs()
to get the buffers for indexing. It checks if each buffer is inbuffers
and adds it if it's not there. It fails to remove buffers that were not returned fromopts.get_bufnrs()
.I was experiencing the performance issues described in #40 and this was the cause. The number of indexed buffers only grows, regardless of what
get_bufnrs()
returns.The text was updated successfully, but these errors were encountered: