I am using a lot of bi files to help organize my app. I noticed that it doesn't seem to recognize my other subs in other bi files or main file when working with it in the IDE.
There are no errors, but each file in itself sometimes will cause an error when referencing a sub or function outside of that bi file.
Is there a way to make that not do it?
For example this does not error out (and shouldn't) when run, but when editing it in the IDE it has a syntax error, or a false positive
I = r(2)
lwrite "`2 " '<-- syntax error here
lwrite
"`0 " <-- syntax
error here too
lwrite - is an actual function and works as expected, however, it is causing an error when editing it in the IDE. I just ignore it, as I know the program works fine.
Note this is an example, it is not just the lwrite, that is erroring out, there are a few vars, and sub calls that are syntax errors too. They are correct , and the program compiles fine.
For example, the r(2) function works fine. and doesn't err, even though that too, is outside this .bi file.
I don't mind, it's just an annoyance, so thought I would ask to see if this is an IDE issue, or something I can do differently.
thanks!