When developing based on CDD (Configuration Driven Development), a common pattern is to store all function calls inside a YAML or equivalent file. The hard thing about it is we lost the ability to navigate through the packages, as we have in .py files (cmd button - MacOS). Is there any plugin done already for VSCode that can provide us the same behavior? Or even other ways I can address this problem?
One illustrative example:
process:
call: custom.package.process
From the YAML I would like to be able to navigate directly over the function process.
Thanks!