I'm trying to write code-snippet for Visual Studio Code and TypeScript. So far I managed to mirror typed word like this:
import { ${1:Name}Component } from './${1:name}.component';
When I type the word in place #1 it is mirrored to place #2 like this:
import { MynameComponent } from './Myname.component';
Is it possible to change snippet so the place #2 is in lower case like this:
import { MynameComponent } from './myname.component';