vscode-gremlins icon indicating copy to clipboard operation
vscode-gremlins copied to clipboard

Insert a set of characrter with from to notation

Open riccardoprandini01 opened this issue 2 years ago • 1 comments
trafficstars

I have to mark all non ascii char in a file so i ned to add continuous utf8 inteval of char actually i I have to add a lot of characters. "0080-00FF": useful notation could be

for non contiguous space could be useful

"0001-0007",
"0010-0017":{
            "zeroWidth": false,
            "description": "avoid type",
            "level": "error"
}

another useful thing could be:

"0001-0001" :{
            "zeroWidth": false,
            "description": "avoid type",
            "level": "error"
}

space made by 1 character

riccardoprandini01 avatar Jan 25 '23 12:01 riccardoprandini01

If I'm understanding you correctly, it looks like you're asking for the ability to specify a range of characters. If that's the right understanding, this is already supported using exactly the suggested notation: https://github.com/nhoizey/vscode-gremlins#specifying-a-range-of-invalid-characters

TheSench avatar Jan 25 '23 13:01 TheSench