我想知道是否有一个vscode扩展可以完成这项工作,或者我如何定制vscode go to definition
或find all reference
使其工作:
function ParentComponent() {
// funcInParent definition
function funcInParent() {}
return <ChildComponent
passToChildFunc={funcInParent}
>
</ChildComponent>
}
function ChildComponent({ passToChildFunc }) {
passToChildFunc(); // want to custom `go to definition` to go to `funcInParent definition` in ParentComponent
}
谢谢。
1条答案
按热度按时间wlzqhblo1#
我找到的最接近的快捷键是
Ctrl+T
,即-显示所有符号
获取更多快捷方式