I have a lot of key binding such the following:
{
"key": "; c",
"command": "editor.action.insertSnippet",
"when": "editorLangId == vhdl && neovim.mode == insert && editorTextFocus",
"args": {
"name": "constant"
}
}
but now i cannot type ; because vscode is waiting for next key chord. I read here that the added 5s timeout but that is a lot of time to wait. Is there any work around for this?