You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I understand correctly, only one include directory can be set at the time.
Would it be possible to add more include directories such that when I add @include "file.cfg" it would be looked up inside any of these directories?
The text was updated successfully, but these errors were encountered:
That would require some changes to implement an include path (like in a compiler). But you could probably work around it with the existing API by making a custom include function, and have it read the list of include directories from an environment variable, for example.
Do you have a plan to add this enhancement. This feature is very use full. For example, I may have the following config file, a.config is in /etc/ and b.config is in /opt/, so, i want to add both of "/etc/" and "/opt/" in the "include directories".
If I understand correctly, only one include directory can be set at the time.
Would it be possible to add more include directories such that when I add @include "file.cfg" it would be looked up inside any of these directories?
The text was updated successfully, but these errors were encountered: