summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2024-03-21 19:18:02 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2024-03-21 19:18:43 +0900
commitdb6db49ed642caf9cbe716f80d4fa40052118068 (patch)
treeae96dddd28f3b463a98d201b21bd7f5e10e0a103
parent05453881c308b88ed6991e2ff9d6ac322dfac7c8 (diff)
Increase the buffer size for POST requests
Close #3685
-rw-r--r--src/terminal.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/terminal.go b/src/terminal.go
index 04e1d3a9..c2eda995 100644
--- a/src/terminal.go
+++ b/src/terminal.go
@@ -776,7 +776,7 @@ func NewTerminal(opts *Options, eventBox *util.EventBox) *Terminal {
theme: opts.Theme,
startChan: make(chan fitpad, 1),
killChan: make(chan int),
- serverInputChan: make(chan []*action, 10),
+ serverInputChan: make(chan []*action, 100),
serverOutputChan: make(chan string),
eventChan: make(chan tui.Event, 6), // (load + result + zero|one) | (focus) | (resize) | (GetChar)
tui: renderer,