-
-
Notifications
You must be signed in to change notification settings - Fork 179
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cmd+V support on Mac #428
Comments
This issue is because of vim/vim#5349. |
Thanks for looking into it! I’m actually using neovim though, in case you wanna open an issue in their repo as well. |
The issue for neovim: neovim/neovim#11551 |
Close this issue as neovim/neovim#11551 has been closed. |
Sorry but I don't understand why this is a vim/nvim issue, when LeaderF is the only place in the entire terminal environment where Cmd+V doesn't work. This key combo works as expected in iTerm, inside tmux, inside vim, inside nvim, and with other plugins like fzf and Clap. It's literally only inside LeaderF that it doesn't work. |
Because LeaderF uses |
vim --version
ornvim --version
: v0.4.3:echo has("python")
: 0:echo has("python3")
: 1:echo &pythondll
(only vim, not neovim)::echo &pythonthreedll
(only vim, not neovim)::py print(sys.version)
::py3 print(sys.version)
: 3.7.3 (default, Mar 27 2019, 09:23:15) [Clang 10.0.1 (clang-1001.0.46.3)]:echo g:Lf_Debug_Cmd
: rg --no-messages --files --color never:echo g:Lf_FilesFromCache
: 1Describe your question, feature request, or bug.
Leaderf doesn't support Cmd+V for pasting content on its prompt. Given that this is the default shortcut on Mac, it becomes very counter-intuitive for Mac users to have to use CTRL+V only in this case instead.
I tried to use
Lf_CommandMap
but couldn't get it to map correctly my Cmd+V to CTRL+V.Note that I can paste normally using Cmd+V in my Vim inside the terminal with no extra configuration. I used other fuzzy finders in the past (fzf, clap) and this always worked with no extra configuration as well.
Steps to reproduce
Leaderf file
Cmd+V
to paste anything on the promptActual behaviour
Expected behaviour
Cmd+V behaves just like CTRL+V.
The text was updated successfully, but these errors were encountered: