You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When clicking a variable in a ts file, it will highlight all variables of the same name even if it is not the same variable. In the existing typescript plugin, it will only highlight the correct instances of the variable
In the attached example, when clicking bar in tsgo extension, both bar will be highlighted, whereas in the existing ts plugin, only one would be highlighted.
function foo(){
let bar;
}
function baz(){
let bar
}