-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Mapping ALt + Key is not working #4747
Comments
Hi, afaik alt key mappings are not supported as of now: For your special case, C-i is jump forward, right? If there is an equivalent vscode function, one could create a keybinding to that. |
Hi, ALT key is not been mapped. I'm trying to map keys to move lines up and down with and but not working. When changes to and works as expected. Tried on Ubuntu and Windows 10, no success.
I don't get why its happening because in previous releases alt key is supported (#2713 (comment)). Maybe a bug is still occurring? |
As far as I know there is currently no support for 'Alt' keys combinations. For now as a workaround you can change the keybindings directly in VSCode. If you go to VSCode's 'Keyboard Shortcuts' (you can press
This will allow you to also use 'Alt+k' and 'Alt+j' to move lines up and down respectively. And since this is native to VSCode it will work no matter what mode you are in. |
Closing as duplicate of #2713 |
As the title, it's my setting below, by the way, the before:["C-k"] is wroking nomrally
in setting.json
"vim.normal..." :{
"before":["A-k"],
"after":["C-i"],
}
Is there something other setting in vscode which i need to handle?
The text was updated successfully, but these errors were encountered: