Skip to content

Commit

Permalink
Print highlighted versions of code
Browse files Browse the repository at this point in the history
  • Loading branch information
mkchoi212 committed Dec 28, 2017
1 parent 7810a0b commit 7151bee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,14 +85,14 @@ func selectConflict(i int, g *gocui.Gui) error {
return err
}
v.Title = conf.CurrentName
printLines(v, conf.CurrentLines)
printLines(v, conf.ColoredCurrentLines)

v, err = g.View("foreign")
if err != nil {
return err
}
v.Title = conf.ForeignName
printLines(v, conf.ForeignLines)
printLines(v, conf.ColoredForeignLines)
return nil
})

Expand Down

0 comments on commit 7151bee

Please sign in to comment.