You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First, I want to thanks for the great work you're doing 👍
I was trying to map dH to delete all left and dL to delete all right in a line. But when I tried the following code in settings.json, it doesn't work.
// I have mapped H to move to the head and L to move to the end"vim.normalModeKeyBindingsNonRecursive": [
{
"before": [
"d",
"H"
],
"after": [
"d",
"^"
]
},
{
"before": [
"d",
"L"
],
"after": [
"d",
"$"
]
}
],
If I use H it actually work, but I am used to use dH to delete all left in other vim editors.
So is there a way to do solve this problem with VScode-vim?
Thanks!
Environment
Operating system : macOS Majave Version 10.14.5
Web browser : Version 80.0.3987.132
VScode: Version 1.42.1
The text was updated successfully, but these errors were encountered:
Hi,
your mappings are correct in general. But, what you are looking for, is not possible for now. There are some issues with the same topic: #3742 #3086
First, I want to thanks for the great work you're doing 👍
I was trying to map
dH
to delete all left anddL
to delete all right in a line. But when I tried the following code in settings.json, it doesn't work.If I use H it actually work, but I am used to use
dH
to delete all left in other vim editors.So is there a way to do solve this problem with VScode-vim?
Thanks!
Environment
The text was updated successfully, but these errors were encountered: