material2-snippets
material2-snippets copied to clipboard
Doesn't recognize the mat- prefix
trafficstars
I've had your Webstorm plugin for years but it has been a couple of years since the Angular Material team has changed to the mat- prefix from md. Any chance your plugin can be updated?
Use case, an Angular Material table:
<ng-container matColumnDef="select">
<th mat-header-cell *matHeaderCellDef> Select </th>
<td style="width: 4em; text-align: center" mat-cell *matCellDef="let row">
<mat-checkbox (click)="selectMember(row.member_id)"></mat-checkbox>
</td>
</ng-container>