Hello Friends
For simplicity purposes consider the following code for the child.sh file:
#! /bin/bash
# shellcheck source=/dev/null
source "$HOME/path/parent.sh"
something(){
...
}
...
For Visual Studio Code, according with your own experience and use, I need extensions to accomplish the following goals:
- Open the
parent.shfile is if doneCtrl+Clickin thesource "$HOME/path/parent.sh"line - Open a Dialog Window as a popup if is done
Ctrl+ mouse hover over thesource "$HOME/path/parent.sh"line - Show a hierarchy diagram of the 2 script files involved
Thanks in advance