github.com/andrewrech/lazygit@v0.8.1/pkg/commands/git_structs.go (about)

     1  package commands
     2  
     3  // Conflict : A git conflict with a start middle and end corresponding to line
     4  // numbers in the file where the conflict bars appear
     5  type Conflict struct {
     6  	Start  int
     7  	Middle int
     8  	End    int
     9  }