Replies: 3 comments 1 reply
-
How can you accidentally hit such complicated mapping? 😀 You can always press |
Beta Was this translation helpful? Give feedback.
0 replies
-
I mean, when I want to do |
Beta Was this translation helpful? Give feedback.
0 replies
-
I do not think it would be great for all the users, but you can customize the keymap in your config: global_keymaps = {
["Send all requests"] = {
"<leader>Ra",
function()
vim.ui.input({ prompt = "Send all requests? (y/n)" }, function(input)
if input == "y" then require("kulala").run_all() end
end)
end,
mode = { "n", "v" },
},
},
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Sometimes I accidentally hit
<leader>Ra
, but I don't want to execute all the calls.Please add an option that enables the need of a confirmation to execute all calls.
Beta Was this translation helpful? Give feedback.
All reactions