diff options
| author | Junegunn Choi <junegunn.c@gmail.com> | 2025-09-14 11:41:12 +0900 |
|---|---|---|
| committer | Junegunn Choi <junegunn.c@gmail.com> | 2025-09-14 11:41:12 +0900 |
| commit | 6684771cbfb9c352001f4a0394e819f26fc440ab (patch) | |
| tree | fff845bc35842780a2e56499f1758925b0c60746 | |
| parent | f5f894ea47b3a518a18ee06ae81bc53df16b1b5e (diff) | |
| download | fzf-6684771cbfb9c352001f4a0394e819f26fc440ab.tar.gz | |
Fix CTRL-Z for tcell renderer by using the official API
See https://github.com/gdamore/tcell/pull/431
| -rw-r--r-- | src/tui/tcell.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tui/tcell.go b/src/tui/tcell.go index 3bf28797..e4a6a988 100644 --- a/src/tui/tcell.go +++ b/src/tui/tcell.go @@ -724,13 +724,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() } } |
