Replies: 3 comments
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
ayorgo
-
|
Or use |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Thank you @nenahp. Got it working with the following: winopts = {
on_create = function(e)
vim.keymap.set('t', '<c-V>', function()
vim.api.nvim_paste(vim.fn.getreg('+'), false, -1)
end, { buffer = e.bufnr })
end
}otherwise it was complaining about global |
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
Uh oh!
There was an error while loading. Please reload this page.
-
I use kitty terminal and have ctrl-v mapped to the paste action inside terminal, including fzf.
I also mapped ctrl-v in the command mode via
But I'm struggling with fzf-lua prompts. I managed to disable the vertical split action by:
But when I press ctrl-v inside the prompt it just doesn't do anything.
How do I make it work?
Beta Was this translation helpful? Give feedback.
All reactions