-
-
Notifications
You must be signed in to change notification settings - Fork 554
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
<A-n> fails to interprets in Macos. I set neovide_input_macos_alt_is_meta
#1866
Comments
I also have this too. In neovide:
But I even tried with neovide 0.10.4 |
Could you try the latest master version, the keyboard handling was changed a lot here #1789 |
Thanks for your reply. However, there also some errors for converting mappings.
|
This should be fixed by #1899, it would be great if you can test that. |
Thanks for your work. Sorry to say that it some errors exists.
I think that is because some keymaps(like |
I think we will leave the fix out of #1899 for now. And then once this rust-windowing/winit#2887 gets merged try to use that instead. That should also allow setting the option for the left and right alt separately. |
thanks for your work! |
I can help with fix testing, but implementation specifics I may not be able to, I'm not very familiar with rust,, |
@fredizzimo with the following setup: vim.g.neovide_input_macos_alt_is_meta = true
vim.keymap.set("n", "<a-n>", ':echo "hello n"<cr>')
vim.keymap.set("n", "<a-m>", ':echo "hello m"<cr>')
vim.keymap.set("n", "<a-o>", ':echo "hello o"<cr>') On the current main (bc94189), both "hello n" and "hello m" are printed, but not "hello o". |
I think this can be fixed by integrating rust-windowing/winit#2887, which does the swapping at a much lower level, but I'm not completely sure. |
@OliverChao @richmeta This appears to be fixed by #2046; please let us know how it goes! |
Hey @JamesWidman - i've just tried it with a clean build from your repo. Re-running using the same test as I posted earlier, unfortunately NVIM v0.9.1 I'm interested if i can help in some debugging of this issue, so I'll spend some time on this later. Thanks for your help! |
@richmeta from the top-level directory of the neovide repo, i tried putting your setup into a file named target/debug/neovide -- -u c.lua ...and the key bindings work for me in this case. Are you setting (We might be able to avoid that breaking change, but I'm waiting for feedback on that point.)
You're welcome! And thank you for testing! |
@JamesWidman - yes my config already has Running as you suggested gives me both "hello m" and "hello o" but "hello n" gives no output. What's interesting is that I'm on a UK keyboard map here, and I use an external physical keyboard (Alt maps to Option). However pysically unplugging and directly using the mac keyboard makes no change to the test. |
Yep, the Mac UK keyboard layout has option-n as a "dead key"; it temporarily types a |
If I remember correctly, the dead keys are delivered using the IME system on the mac. So it's likely that the ime system handles it completely, and therefore nothing is delivered to Neovide. You can try disabling IME https://neovide.dev/configuration.html#ime |
Awesome! Yes setting |
Oh, weird... With
("System Setings" -> "Keyboard" -> "Text Input") (Also, this shouldn't make a difference, but I also set @richmeta, if you run neovide with: target/debug/neovide -- -u c.lua (with the c.lua described above)
(with whatever physical |
Pressing If I then press With edit: my input source is "British - PC" |
very werid... vim.g.neovide_input_macos_option_key_is_meta = "Both"
vim.g.neovide_input_ime = true (keymaps are sort of unnecessary for this test) $ pwd
/path/to/clone/of/neovide
$ target/debug/neovide -- --clean -u c.lua ...and under the British input source*, i enter insert mode and type: Expected/desried result (which is the result that I observe): nvim inserts the string " @richmeta's result: nvim waits for input, and if you then input another (This suggests to me that, on @richmeta's machine, there is maybe some part of winit that is not treating the @richmeta, I think we shouldn't merge PR #2046 before we reproduce the behavior that you see, because there will probably be other users who see the same behavior, and I don't want to tell them to disable dead keys. At the moment I'm stumped. If anyone else would like to suggest steps to reproduce the behavior that @richmeta sees, please let me know! edit: updated shell command to include the edit 2: I also tried this with the input source "British - PC" and got the same result as with "British" |
I suggest adding |
@richmeta if you want, you could try inspecting winit's behavior in a debugger session—specifically, a part of winit that was introduced to implement the With the test case above, after As you step through, here's what's supposed to happen (and what you should definitely observe in the case of
if you step into (this debugging experience is somewhat complicated by the fact that LLDB doesn't know about rust, so it treats rust expressions as if they were C or C++ expressions (which can work, e.g. if you need to display a string, so you cast it to (char*)), and in this context the clang parser may be given identifiers that are modified from how they appeared in the source code. Maybe I should see what the rust-debugging situation is like in VScode...) |
Thanks @JamesWidman - I'll see if i can find some time this week to investigate more thoroughly. Meanwhile, i have a question: Why do we need IME on for mappings? Are we saying it would be possible for someone to do for example? Does neovim itself allow this mapping? And the actual keypress required for IME users would be Depending if their OS supported IME or not i think would be a bit confusing here? |
Yes, that is actually supported and even required by the default mappings. On some keyboards like mine for example Furthermore, there's no difference between mappings and text input in Neovim, and the way that we communicate it, so we always have to assume that the user is typing text and send the keypresses according to that. Note, that only macOS and in some cases the IME on other systems sends the dead keys through IME. On the other platforms they are sent as a regular input. It's also possible to disable IME in only normal mode for example, and that is described here https://neovide.dev/configuration.html#ime |
Hi @JamesWidman, Ok this is interesting. 🙂 I start debug with this: and I check With
and consequentially
so
note: this happens twice because After this Trying with I've also tried explicitly setting I finally tried with ( I'm now using |
Hey @fredizzimo i was curious which was still on this, was there anything to test? |
In macos Sonoam Version 14.1 (Apple M2), all things work fine for me with the latest commits. I will close this issue, and if anyone has the same problem, you can reopen it or create one new issue. |
We never resolved the IME issues that were reported on some systems a few messages up. On some systems you might have to set @JamesWidman, has been busy lately, but #2046, which just needs some minor updates should fix a few other issues. |
Yes. On MacOS(M2), mapping errors are gone without IME . #2046 maybe help and I am waiting for it. Fortunately, I use all vim.api.nvim_create_autocmd("InsertEnter", {
callback = function()
vim.g.neovide_input_ime = true
end,
})
vim.api.nvim_create_autocmd("InsertLeave", {
callback = function()
vim.g.neovide_input_ime = false
end,
})
|
I've got neovide 0.13.1 and none of the settings work for me - I can't get In insert mode character |
In Macos, I set
vim.g.neovide_input_macos_alt_is_meta = true
, keys works fine except .I don't know if someone can reproduce it. But other keys like and are ok.
To Reproduce
can not be matched.
Expected behavior
Screenshots
Screen.Recording.2023-05-16.at.12.42.15.mov
If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
Please run
neovide --log
and paste the contents of the.log
file created in the current directory here:Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: