I have remapped some vim keys in VS Code (using Vim emulation) but I can't manage to use them with multiplicity.
What this means is that when you normally press 3dd it deletes 3 lines. I have keymapped the normal version of the function dd like this
{
"before": ["<Leader>","c","l"],
"after": ["d","d"]
}
but it doesn't work if I press 3-leader-c-l.
How do you keymap keys with that functionality?