-
Notifications
You must be signed in to change notification settings - Fork 29
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
Paste not working in OSX #29
Comments
neovim uses |
@coolwanglu @norcalli Will we then be able to have it easily? Is there still work to be done? |
I implemented it on my branch, but I think mine is outdated now. I did it the way neovim did it which is to use and and set mappings for different modes and pretend the input with those keystrokes to trigger in the right mode. That's why there was a bug for a bit about those characters showing up in paste a while back. Thank you,Ashkan Kiani On Sat, May 9, 2015 at 1:04 AM, Giovanni [email protected] wrote:
|
Did you set |
Sorry I was going to sleep last night. On the paste trigger, I do
where This should make it so that the paste command triggered inserts the text in each mode. Obviously I chose the behaviour of it pasting on a new line and choosing to stay in insert mode. |
When I go to insert mode then run |
This is a |
I'm not sure about other OS's, but paste isn't working in any capacity for me. I believe it's just a no-op because of the default menu.
Regardless of the default menu, is sent to neovim, but neovim doesn't handle <D-...> mappings it seems because doing
nmap <D-v> hi
and thenmap <
shows that it's registering it as individual keystrokes and not one key combination.I can add a handler to respond to
cmd-v
from the menu, but I'm not sure how paste is implemented in neovim, and I would like to do it the official way if there is a msgpack endpoint.The text was updated successfully, but these errors were encountered: