vscode-input-sequence icon indicating copy to clipboard operation
vscode-input-sequence copied to clipboard

recently,it is repeated for each character entered

Open netmou opened this issue 2 years ago • 5 comments

image

netmou avatar Mar 28 '23 06:03 netmou

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,
    }
}

2023-04-05_150716

yusisc avatar Apr 05 '23 07:04 yusisc

why it is Unknown Configuration Setting? image

AgoN-jorrvaskr avatar Apr 14 '23 12:04 AgoN-jorrvaskr

@AgoN-jorrvaskr

The actual setting in my version is: "sequence.replaceSelection": true

ndesgranges avatar Apr 25 '23 07:04 ndesgranges

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.

image

This setting seems to have been added in #1.

image

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

i-j-i avatar May 01 '23 11:05 i-j-i

nice

kiinoo avatar Nov 03 '23 07:11 kiinoo