vscode-input-sequence
vscode-input-sequence copied to clipboard
recently,it is repeated for each character entered

I encountered with the same issue. I found the reason is that vs code get an unexpected value for the variable replaceSelection in function function perform(initial, editor, options, undoStop) .
Forcing replaceSelection to be true, I get what I want.
MY final solution is giving a corresponding setting in my settings.json file.
{
// the other settings
"sequence": {
"replaceSelection": true,
}
}

why it is Unknown Configuration Setting?

@AgoN-jorrvaskr
The actual setting in my version is:
"sequence.replaceSelection": true
Sounds like a Visual Studio Code version issue.
For the time being, it seems that it can be avoided by setting sequence.replaceSelection to true from the settings.

This setting seems to have been added in #1.

It seems to be a setting that exists to match the feeling of use with sequential-number of the Atom editor.
nice