Bump gocui

... and switch back from stefanhaller's tcell fork to the official tcell. This
basically reverts 7ccb871a45.
This commit is contained in:
Stefan Haller 2024-01-03 20:29:25 +01:00
parent ef3d6f4a32
commit cb5d0bca1c
98 changed files with 724 additions and 614 deletions

View file

@ -4,7 +4,7 @@
package gocui
import "github.com/stefanhaller/tcell/v2"
import "github.com/gdamore/tcell/v2"
// Attribute affects the presentation of characters, such as color, boldness, etc.
type Attribute uint64

View file

@ -12,9 +12,9 @@ import (
"sync"
"time"
"github.com/gdamore/tcell/v2"
"github.com/go-errors/errors"
"github.com/mattn/go-runewidth"
"github.com/stefanhaller/tcell/v2"
)
// OutputMode represents an output mode, which determines how colors

View file

@ -7,7 +7,7 @@ package gocui
import (
"strings"
"github.com/stefanhaller/tcell/v2"
"github.com/gdamore/tcell/v2"
)
// Key represents special keys or keys combinations.

View file

@ -5,8 +5,8 @@
package gocui
import (
"github.com/gdamore/tcell/v2"
"github.com/mattn/go-runewidth"
"github.com/stefanhaller/tcell/v2"
)
// We probably don't want this being a global variable for YOLO for now

View file

@ -13,9 +13,9 @@ import (
"unicode"
"unicode/utf8"
"github.com/gdamore/tcell/v2"
"github.com/go-errors/errors"
"github.com/mattn/go-runewidth"
"github.com/stefanhaller/tcell/v2"
)
// Constants for overlapping edges