bhughes339/vscode-replacerules

Issue for unicode special characters

Opened this issue · 3 comments

The following Unicode char can be found(and replaced) by using the built-in find & replace dialog but it doesn't work with replacerules,
find: "※"
A few other special characters are listed below,
— – … . ★

find: "[\\u203B\\p{Pd}"]

How can I replace \u0028 with {? This code is not working and there are no errors:

"find": "\u0028",
"replace": "{"

Solved: I was using
"find": "\ \u0028",
"replace": "\ \u007B",

should be
"find": "\ \u0028",
"replace": "\u007B",