tintinweb / vscode-inline-bookmarks

Customizable inline Bookmarks for Visual Studio Code
https://marketplace.visualstudio.com/items?itemName=tintinweb.vscode-inline-bookmarks
GNU General Public License v3.0
45 stars 14 forks source link

Regex doesn't work #61

Open onny-dev opened 1 year ago

onny-dev commented 1 year ago

For purple i have set this regex rule: \/* ![\s]

but if I write, in the document, / ! test /, the boockmark is not set

bdalia commented 1 year ago

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.

bdalia commented 1 year ago

Hi @onny-dev, I had the same problem, i solved by escaping all characters (i also used regex for spaces):

\/\*[\s]![\s]

Regards