1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-06-15 00:15:32 +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

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"
)