mirror of
https://github.com/gdamore/tcell.git
synced 2025-04-26 13:48:53 +08:00

This does sort the main problem of screen.Fini(), but really we want to use a separate Pause() and Resume() function, because screen.Fini() is not meant for reuse in this way. Note that one side effect of this change is that applications which redirect stdin and stdout and expect us to just use /dev/tty instead are going to break -- we are now using stdin and stdout like nearly every other screen oriented application.
13 lines
308 B
Modula-2
13 lines
308 B
Modula-2
module github.com/gdamore/tcell/v2
|
|
|
|
go 1.12
|
|
|
|
require (
|
|
github.com/gdamore/encoding v1.0.0
|
|
github.com/lucasb-eyer/go-colorful v1.0.3
|
|
github.com/mattn/go-runewidth v0.0.10
|
|
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68
|
|
golang.org/x/term v0.0.0-20201210144234-2321bbc49cbf
|
|
golang.org/x/text v0.3.0
|
|
)
|