Syntax loading and highlighting

BlitzMax Forums/MaxGUI Module/Syntax loading and highlighting

William Drescher(Posted 2008) [#1]
Could someone please post the command loading system from the bmx source and the highlighting part of it too? I've been rifling through the source code for a while and I can't find it anywhere.


Dreamora(Posted 2008) [#2]
???
What are you actually talking about?

Taht is part of the MaxIDE source in the src/maxide folder, not part of BM


William Drescher(Posted 2008) [#3]
Sorry, that's what i meant, i've been looking through the MaxIDE source and i cannot find the code that loads the syntax for the ide and i can't find the code that highlights it in the ide.


grable(Posted 2008) [#4]
Command loading is in TQuickHelp.LoadCommandTxt() at line 400.
The highlighting code is in TOpenCode.SetCode() and starts at line 4175.

Oh, and the line numbers might be off, i may have messed around with my original copy ;)


William Drescher(Posted 2008) [#5]
Thankx grable