akinsho / git-conflict.nvim

A plugin to visualise and resolve merge conflicts in neovim
953 stars 34 forks source link

fix(quickfix cmd): construct items from visited buffers #68

Closed MariaSolOs closed 1 year ago

MariaSolOs commented 1 year ago

Fixes #64

akinsho commented 1 year ago

Thanks for all the contributions 🙌🏾

MariaSolOs commented 1 year ago

Thanks for all the contributions 🙌🏾

Thanks to YOU for the amazing plugins!

lvimuser commented 1 year ago

This PR introduces a breaking change.

Before: we'd always call callback, even if #items == 0. Now: callback may be called multiple times, but not when #items == 0.

Is that intended?

MariaSolOs commented 1 year ago

@lvimuser good catch! I opened https://github.com/akinsho/git-conflict.nvim/pull/70 to fix it.