m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-17 07:43:39 -05:00

Fix CTRL-Z for tcell renderer by using the official API

See https://github.com/gdamore/tcell/pull/431
This commit is contained in:
Junegunn Choi
2025-09-14 11:41:12 +09:00
parent 223d0c0819
commit 922bc22ceb

View File

@@ -569,13 +569,13 @@ func (r *FullscreenRenderer) GetChar() Event {
func (r *FullscreenRenderer) Pause(clear bool) {
if clear {
r.Close()
_screen.Suspend()
}
}
func (r *FullscreenRenderer) Resume(clear bool, sigcont bool) {
if clear {
r.initScreen()
_screen.Resume()
}
}