Does this issue occur when all extensions are disabled?: Yes
- VS Code Version: insider
- OS Version: Windows
Steps to Reproduce:
- Set
"editor.gotoLocation.multipleReferences": "goto" setting
- Create untitled TypeScript file:
const test = () => {}
test()
test()
- Ctrl+clicking
test on first line or execute Go to References command
Expected: focus on line 2
Actual: stays on the same position
References provide isn't being called on Go to References command, but specifically TypeScript extension still includes definition into references. I hope you take this issue as it is really annoying, there is absolutely no need to do this + I can call definitions manually when I want.