Abort/Cancel/Stop an HTTP request #823
Answered
by
YaroSpace
primeapple
asked this question in
Q&A
-
|
Some times I start a request and then realize it runs against a timeout. Instead of waiting for it to timeout I want to abort/cancel/stop the request. How do I do that? I didn't find an example here: https://neovim.getkulala.net/docs/getting-started/default-keymaps |
Beta Was this translation helpful? Give feedback.
Answered by
YaroSpace
Jan 30, 2026
Replies: 1 comment 2 replies
-
|
Ctrl-C should work. Also, you should be seeing a float "Press Ctrl-C to cancel.." It is in Kulala UI keymaps ["Interrupt requests"] = {
"<C-c>",
function()
require("kulala.ui").interrupt_requests()
end
},
|
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
primeapple
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ctrl-C should work. Also, you should be seeing a float "Press Ctrl-C to cancel.."
It is in Kulala UI keymaps