hydra.nvim icon indicating copy to clipboard operation
hydra.nvim copied to clipboard

insert mode hydras can't insert text

Open dark-ether opened this issue 2 years ago • 1 comments

the following hydra shows the problem

hydra({
  name = "Test",
  mode = "i",
  body = "<C-t>",
  config = {
    color = "red",
    invoke_on_body = false,
    timeout = false
  },
  heads = {
    {"a","aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",{desc = "test"}}
  },
})

luckily functions work so i can mitigate the problem with nvim_input.

dark-ether avatar Feb 07 '23 11:02 dark-ether

I'm curious what you're using an insert mode hydra for?

IndianBoy42 avatar Mar 12 '23 09:03 IndianBoy42