I'm coding an Angular application using VSCode and sometimes I want to learn more about a tag that I come across.
For example, let's say I encounter a tag <display-active-users>
and I want to determine some details about how it was implemented. Currently, to find the component file for this I do I a file search (Ctrl + P
) and hopefull find a file named display...
. If not, I do a full text search for display-active-users
.
However, it would be much more ideal if I could just right click, or press some shortcut key on my keyboard, on <display-active-users>
and be taken to the component file.
Is there any way to do this?