type_finder_plugin/README.md

10 lines
327 B
Markdown
Raw Permalink Normal View History

2024-04-15 01:12:39 -04:00
# Type Finder
This is a basic plugin that will parse the currently open file in order to find the type of a variable.
Created for use in live templates, specifically custom setters:
```bash
$CLASS_NAME$ set$CAMEL_VARIABLE$($TYPE$ $NEW_VARIABLE$){
$VARIABLE$ = $NEW_VARIABLE$;
return *this;
}
```
![variables](image.png)