1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-04-17 12:06:38 +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]] [[projects]]
branch = "master" branch = "master"
digest = "1:9b266d7748a5d94985fd9e323494f5b8ae1ab3e910418e898dfe7f03339ddbcd" digest = "1:a783e08c25b01d2b1b447469bc6e80a666ddac91087fb286864a81c34d9da99d"
name = "github.com/jesseduffield/gocui" name = "github.com/jesseduffield/gocui"
packages = ["."] packages = ["."]
pruneopts = "NUT" pruneopts = "NUT"
revision = "cfa9e452ba5ebf014041846851152d64a59dce14" revision = "985c2f8d59e55de7e78b1ecf72277041df7dd44d"
[[projects]] [[projects]]
branch = "master" branch = "master"

View File

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

View File

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

View File

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

View File

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