-
I've recently upgraded to neovim 11.3 and the latest version of gitsigns and I'm noticing that I can only preview each "part" of a hunk. Is this intentional or did I find a bug? For example, if I change a line and add a comment above it, that will stage as a single hunk and also show a single inline preview with both changes, but when I use the preview window, I have to view the mod as one preview for the line change and one preview for the new line. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
This is probably because you have
|
Beta Was this translation helpful? Give feedback.
That did it. Thanks.
I just added
vim.opt.diffopt = "internal,filler,closeoff"
to my options config.Looks like this is now the default value now. Should there be a note or config option or something? I think more people may have this issue in the future.