Page 1 of 1

plugin Git Conflict Solver

Posted: 09.07.2021 19:00
by uvviewsoft
Plugin for CudaText.
Adds a convenient command to solve Git merge conflicts:
'Plugins > Git Conflict Solver > Solve nearest conflict'.
See the intro video for VSCode:
https://www.youtube.com/watch?v=QmKdodJU-js

It finds Git conflict marker in the current document:

Code: Select all

<<<<<<< some_name
=======
>>>>>>> some_name
It finds the nearest marker from the current vertical-scroll position,
with "wrapped search" on. And suggests actions for this conflict:
- 'Current change' - Take the upper part
- 'Incoming change' - Take the lower part
- 'Both' - Concatenate and take both parts

Author: halfbrained (https://github.com/halfbrained)