是否可以从使用vscode的子组件导航到父组件中的函数定义?



我想知道是否有一个vscode扩展可以做这项工作,或者我如何自定义vscodego to definitionfind 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
这是-显示所有符号
获取更多快捷方式

相关内容

  • 没有找到相关文章

最新更新