I was delighted when the Blitz folx separated the IDE from the compiler. One develops an attachment to a particular editor, in my case, Crimson Editor, and I just plain don't like the Blitz default IDE.
One thing I've missed about that default IDE is the brief syntax help that shows in the status bar when you press F1 over a keyword. How would I duplicate this in Crimson Editor?
So, I whipped up a quickie Win32 console app that takes a Blitz keyword as a command-line parameter, searches the Blitz syntax file, and displays lines that match your query. Using Crimson's "capture output" feature, I can see the matches right in my editor environment.
I don't know if this useful to anybody else; it may work in other editors, too. If you want to try it out, get it at
http://sommerponyfarm.com/BlitzQuickHelp.zip (22KB)
The software is free; I've included source code and a list of Blitz keywords.
You can generate your own keywords list by using "BLITZCC.EXE +k".
The program is written in plain C, so there's no DLLs, OCXs, registry settings, or INI files to mess with. Just be sure the KEYWORDS.TXT file is in the same directory and the main EXE.
One thing I've missed about that default IDE is the brief syntax help that shows in the status bar when you press F1 over a keyword. How would I duplicate this in Crimson Editor?
So, I whipped up a quickie Win32 console app that takes a Blitz keyword as a command-line parameter, searches the Blitz syntax file, and displays lines that match your query. Using Crimson's "capture output" feature, I can see the matches right in my editor environment.
I don't know if this useful to anybody else; it may work in other editors, too. If you want to try it out, get it at
http://sommerponyfarm.com/BlitzQuickHelp.zip (22KB)
The software is free; I've included source code and a list of Blitz keywords.
You can generate your own keywords list by using "BLITZCC.EXE +k".
The program is written in plain C, so there's no DLLs, OCXs, registry settings, or INI files to mess with. Just be sure the KEYWORDS.TXT file is in the same directory and the main EXE.