我想知道是否有一个vscode扩展可以做这项工作,或者我如何自定义vscodego 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
}
谢谢。
我设法找到的最接近的键盘快捷键是Ctrl+T
,
这是-显示所有符号
获取更多快捷方式