This template demonstrates the enhanced variable system in the File Template extension.
The value of filename
is: ${input.filename}
- Uppercase: ${filename:uppercase}
- Lowercase: ${filename:lowercase}
- Capitalize: ${filename:capitalize}
- CamelCase: ${filename:camelcase}
- PascalCase: ${filename:pascalcase}
- snake_case: ${filename:snakecase}
- kebab-case: ${filename:kebabcase}
- Today's date: ${date:YYYY-MM-DD}
- Current time: ${date:HH:mm:ss}
- Full timestamp: ${date:YYYY-MM-DD HH:mm:ss}
- Standard UUID: ${uuid}
- Short UUID: ${uuid:short}
- Simple Counter: ${counter}
- Counter with Start: ${counter:start=10}
- Counter with Padding: ${counter:padding=3}
- Counter with Step: ${counter:step=5}
- Combined Counter: ${counter:start=100:step=10:padding=4}
- User's HOME: ${env:HOME:/not-found}
- Username: ${env:USERNAME:anonymous}
- Branch: ${git:branch}
- Repository: ${git:repo}
- Author: ${git:author}
- Email: ${git:email}
You can also use JavaScript expressions with the {{{ }}}
syntax:
{{{
// This will be executed as JavaScript
variables.calculatedValue = 40 + 2;
variables.timestamp = Date.now();
variables.randomNumber = Math.floor(Math.random() * 100);
}}}
Calculated value:
You can use the JavaScript evaluation to create conditionals:
{{{
// Example conditional logic
// Initialize the filename variable if it doesn't exist
variables.filename = variables.filename || '';
if (variables.filename.toLowerCase().includes('component')) {
variables.fileType = 'Component';
} else if (variables.filename.toLowerCase().includes('service')) {
variables.fileType = 'Service';
} else {
variables.fileType = 'Generic';
}
}}}
This file is a: ${{ variables.fileType }}
Any variables defined in your settings.json will also be available:
- Example: ${foo}