Quote:
...add a /S and/or -S (or similar) parameter which can be supplied to AutoHotKey on the command line that makes it skip the very first line of a script that it loads
It's easy to add. The only problems are:
1) The risk of breaking existing scripts that already use /s as an incoming parameter. The parameter could be made longer to reduce the risk of this.
2) Adding features to the program that would be used by fewer than 1 out of 1000 of its users is hard to justify, even if the code size is small. This is because it affects the size of every compiled script, as well has having a tiny impact on performance (code size affects memory utilization, which in turn affects performance). While both of these impacts are tiny, they really add up as more of such features get added over time.
I'm not saying it won't ever be done, I'm just expressing reluctance. Compiling a customized version of the program for this purpose would be ideal, but I realize it might not be practical for you.
Maybe others have comments.