Regex Parameters
已完成
trying to match {{.example}}
with regex:
\{\{\.([a-zA-Z]+)}}
Doesn't seem to work, does datagrip have some special use for {{}}?
请先登录再写评论。
Do you use it for user parameters? If yes, please, share a screenshot of the setting dialog.
@Htmathias You missed escaping for second pair of curly bracers:
\{\{\.\w+\}\}Updated to the new version of datagrip too.
@Htmathias Does it work?