NVF treats my keyboard as if it was US keyboard #1411
-
|
I have this problem where i have the following set as keymap: programs.nvf.settings.vim.keymaps = [
# Comments
# Other keybinds omitted for brevity
{
mode = "n";
key = "<leader>/";
action = "gcc";
desc = "Toggle Comment";
}
{
mode = "v";
key = "<leader>/";
action = "gc";
desc = "Toggle comment in visual mode";
}
]But when I try to enter it with my keyboard which would be Thank you for your help |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
|
after trying some other keys, the command |
Beta Was this translation helpful? Give feedback.
-
|
I think this is due to missing
|
Beta Was this translation helpful? Give feedback.
I think this is due to missing
noremap = falsegccis not part of good ol' vim, therefore you need remapping to bind to it, see:help default-mappingsfor info