Hello. Three questions, please.
The help file says "the open-parenthesis may be omitted entirely if the first item after the word "if" is...an operator such as "not" or "!". "
1. I'd like to know if I can also use || operator to omit the parenthesis?
eg
Code:
if || var=1 {
}
instead of
Code:
if (var=1) {
}
I know I can just type if var = 1, but I want to use the one true brace style. I did a few successful tests with this, but would like to know if it will always work?
2. In scite, when the caret is to the right of a closing brace, and you press enter, it will move the closing brace to the left. How do I stop this?
3. I was wondering what kind of programming language the scite setting files were written in. Is it LUA? Can I do a quick google search to figure out what the $ signs do?
The lines look like this:
autocomplete.ahk1.start.characters=$(chars.alpha)$(chars.numeric)$_@#
Thanks for your help.