Closed kuasha420 closed 3 years ago
Is just the preview on the left not working or does the hover preview also not show up?
@lukas-tr The hover preview also doesn't show up. Only intelisense works
\b
matches word boundaries (a \w
followed/preceded by a \W
character). Remove the \b
at the end and your're good.
{
"match": "\\bname\\=\"{param}\"",
"insert": "{param}",
"displayName": "React Native Vector Icon",
"name": "rnvec"
},
{
"match": "\\bicon\\=\"{param}\"",
"insert": "{param}",
"displayName": "React Native Icon Props",
"name": "rnicon"
}
@lukas-tr Thanks a bunch!
Hello
I'm truing to match the following format but so far having partial success with it.
<Icon name="{param}"
and
icon="{param}"
I can get the intelisense but the little preview icon in the left side is not working.
Help would be greatly appreciated!