Skip to content

Commit

Permalink
Switch to forked repo of gocui
Browse files Browse the repository at this point in the history
  • Loading branch information
jesseduffield committed Jun 5, 2018
1 parent f2bb612 commit d89cab1
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion branches_panel.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"fmt"

"github.com/jroimartin/gocui"
"github.com/jesseduffield/gocui"
)

func handleBranchPress(g *gocui.Gui, v *gocui.View) error {
Expand Down
2 changes: 1 addition & 1 deletion commits_panel.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"errors"

"github.com/fatih/color"
"github.com/jroimartin/gocui"
"github.com/jesseduffield/gocui"
)

var (
Expand Down
3 changes: 2 additions & 1 deletion confirmation_panel.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ import (
"strings"
// "strings"

"github.com/jroimartin/gocui"
"github.com/fatih/color"
"github.com/jesseduffield/gocui"
)

func wrappedConfirmationFunction(function func(*gocui.Gui, *gocui.View) error) func(*gocui.Gui, *gocui.View) error {
Expand Down
2 changes: 1 addition & 1 deletion files_panel.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"strings"

"github.com/fatih/color"
"github.com/jroimartin/gocui"
"github.com/jesseduffield/gocui"
)

var (
Expand Down
3 changes: 1 addition & 2 deletions gui.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ import (
"log"
"time"
// "strings"

"github.com/jroimartin/gocui"
"github.com/jesseduffield/gocui"
)

type stateType struct {
Expand Down
2 changes: 1 addition & 1 deletion status_panel.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"time"

"github.com/fatih/color"
"github.com/jroimartin/gocui"
"github.com/jesseduffield/gocui"
)

func refreshStatus(g *gocui.Gui) error {
Expand Down
3 changes: 2 additions & 1 deletion view_helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ import (
"strings"
"time"

"github.com/jroimartin/gocui"
"github.com/fatih/color"
"github.com/jesseduffield/gocui"
)

func returnFocus(g *gocui.Gui, v *gocui.View) error {
Expand Down

0 comments on commit d89cab1

Please sign in to comment.