mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2024-12-23 03:19:01 +00:00
Increase buffer size of event channel to avoid freeze on zero event
Fix #3516
This commit is contained in:
parent
6b99399c41
commit
cd6788a2bb
@ -729,7 +729,7 @@ func NewTerminal(opts *Options, eventBox *util.EventBox) *Terminal {
|
||||
killChan: make(chan int),
|
||||
serverInputChan: make(chan []*action, 10),
|
||||
serverOutputChan: make(chan string),
|
||||
eventChan: make(chan tui.Event, 1),
|
||||
eventChan: make(chan tui.Event, 3), // load / zero|one | GetChar
|
||||
tui: renderer,
|
||||
initFunc: func() { renderer.Init() },
|
||||
executing: util.NewAtomicBool(false)}
|
||||
|
Loading…
Reference in New Issue
Block a user