Re: To Run .ex or .exw App in Crimson Editor using only 1 hot key ?? Any Help
- Posted by ChrisB (moderator) Sep 29, 2010
- 1312 views
Hi
Why not write a euphoria program that runs the appropriate interpreter based on the extension of the file you supply to it?
eg (pseudocode)
if (extension) = ex then system(run dos interpreter) else (run windows interpreter) end psudoif
You would call this, passing the program name as the parameter whenever you pressed the hotkey
Chris