We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b64d480 commit 64ec61dCopy full SHA for 64ec61d
lua/fzfx/fzf_helpers.lua
@@ -299,13 +299,21 @@ local function send_http_post(port, body)
299
"curl",
300
"-s",
301
"-S",
302
- "--disable",
303
- "--parallel",
+ "-q",
+ "-k",
304
+ "-Z",
305
"--parallel-immediate",
306
+ "--http2",
307
+ "--retry",
308
+ "0",
309
+ "--connect-timeout",
310
+ "0.5",
311
+ "-m",
312
313
"--noproxy",
314
"*",
315
"-XPOST",
- string.format("localhost:%s", vim.trim(port)),
316
+ string.format("127.0.0.1:%s", vim.trim(port)),
317
"-d",
318
body,
319
}, function(line)
0 commit comments