material2-snippets icon indicating copy to clipboard operation
material2-snippets copied to clipboard

Doesn't recognize the mat- prefix

Open jmpreston opened this issue 6 years ago • 0 comments
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>

jmpreston avatar Jul 17 '19 23:07 jmpreston