Is there any extension in VS code that when you press Ctrl + Space in a html element, shows all possible event names with Angular sintax event binding, for example:
<button (click)=""></button>
Pressing Ctrl + Space inside the button tag, VS Code should show:
- (click) or on-click
- (mouseover) or on-mouseover
- ...and all possible events
Regards