1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-01-06 03:53:59 +02:00

bump gocui to version that uses go-errors as well

This commit is contained in:
Jesse Duffield 2019-02-11 22:00:54 +11:00
parent 0891797bf8
commit 53e73313a2
5 changed files with 7 additions and 6 deletions

4
Gopkg.lock generated
View File

@ -197,11 +197,11 @@
[[projects]]
branch = "master"
digest = "1:9b266d7748a5d94985fd9e323494f5b8ae1ab3e910418e898dfe7f03339ddbcd"
digest = "1:a783e08c25b01d2b1b447469bc6e80a666ddac91087fb286864a81c34d9da99d"
name = "github.com/jesseduffield/gocui"
packages = ["."]
pruneopts = "NUT"
revision = "cfa9e452ba5ebf014041846851152d64a59dce14"
revision = "985c2f8d59e55de7e78b1ecf72277041df7dd44d"
[[projects]]
branch = "master"

View File

@ -5,7 +5,7 @@
package gocui
import (
"errors"
"github.com/go-errors/errors"
"github.com/mattn/go-runewidth"
)

View File

@ -5,7 +5,7 @@
package gocui
import (
"errors"
"github.com/go-errors/errors"
"strconv"
)

View File

@ -5,7 +5,7 @@
package gocui
import (
"errors"
"github.com/go-errors/errors"
"github.com/jesseduffield/termbox-go"
)

View File

@ -6,10 +6,11 @@ package gocui
import (
"bytes"
"errors"
"io"
"strings"
"github.com/go-errors/errors"
"github.com/jesseduffield/termbox-go"
"github.com/mattn/go-runewidth"
)