normal mode in Edit blocks popup? #549
Unanswered
georgeguimaraes
asked this question in
Q&A
Replies: 2 comments
-
why don‘t we use |
Beta Was this translation helpful? Give feedback.
0 replies
-
This is my biggest gripe with this plugin too! Here's how I'm solving it until someone smarter than me figures it out: keys = {
{
"<leader>ae", -- overrides default binding
function()
require("avante.api").edit()
vim.schedule(function()
vim.cmd("startinsert")
end)
end,
mode = "v",
desc = "avante: edit",
},
}, |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
So, I select a block, and type
<leader>ae
, which gives me the popup:But the popup is in Normal mode. I need to type
i
to go into Insert mode:Is this expected? Is there a way to enter Insert mode automatically?
(tks for the plugin btw!)
Beta Was this translation helpful? Give feedback.
All reactions