I am merging two git branches together. I am using vimdiff to do this, so there are three vim panes shown in my terminal.
This same conflict arises hundreds of times in my merge:
Every time I come across it, I want to do the same thing: keep the top two lines from HEAD (pink) and the bottom line from OTHER (blue).
At the moment I am typing: diffg 3 To accept blue's changes, then going into insert mode and changing the etc's to var's manually.
I feel like there must be a quicker way to keep the top two lines from pink and the third line from blue every time. Is there? This would save me a lot of typing.
Thanks.