[Feature Request] Relative includes
-
For example if I have included a file
{GLOBAL_SCRIPT_FOLDER}myScripts/errorHandler.js
and withinerrorHandler.js
I want to include another file that is in the same folder I would like to just be able to use the relative path of the file instead of having to specify the{GLOBAL_SCRIPT_FOLDER}
wildcard again - preceded by./
or../../
etc to indicate it's relative.The reason for this is I might want to share the
myScripts
folder with another developer, but they want to keep it within the project's scripts folder rather than in the{GLOBAL_SCRIPT_FOLDER}
. So they would include the first file without that wildcard.