vscode-inline-bookmarks
vscode-inline-bookmarks copied to clipboard
Regex doesn't work
For purple i have set this regex rule: /* ![\s]
but if I write, in the document, / * ! test */, the boockmark is not set
I saw that the plug-in may have some refresh problems if files are not yet saved. Since i saved my newly created files regex are working again.
Regards.
Hi @onny-dev, I had the same problem, i solved by escaping all characters (i also used regex for spaces):
\/\*[\s]![\s]
Regards