In my VIM-VSCode setup, I'm trying to edit the behaviour of the double space tap when in insert mode to NOT add a dot. I'm not sure either why this is considered useful behaviour?
The current fixes I found are not working and I'm not sure why:
"vim.insertModeKeyBindings": [
{
"before": [" ", " "],
"after": [" ", " "],
"commands": [":nohlsearch"]
}
]
"vim.insertModeKeyBindings": [
{
"before": [" ", " "],
"after": [],
"commands": []
}
]