So I want to remap "i" to escape key since i find it easier to remember. But when I do this to settings.json of the VS Code:
"vim.normalModeKeyBindings": [
{
"before": [
"i"
],
"after": [
"<Esc>"
]
}
]
The "i" key is disabled and nothing happens. Just the "i" key in insert mode being disabled. Help, I'm new to vim.