AHK-v2-script-converter icon indicating copy to clipboard operation
AHK-v2-script-converter copied to clipboard

lines can start with a closing brace

Open mmikeww opened this issue 7 years ago • 2 comments

if false {
    msgbox
} msgbox 3
if false {
    msgbox
} if var = 5
{
    msgbox 2
}
var := 5

if false {
    msgbox
} else if var = 5
{
    msgbox 2
}

mmikeww avatar Dec 23 '16 14:12 mmikeww

this could be the same as issue #14 simply ignore any initial } and else on a line and then do the conversion and then add them back

mmikeww avatar Dec 31 '16 05:12 mmikeww

Note for future: The test is recommended to use commas, the current conversion does nothing but looks like it does because it is valid v2 as it is.

safetycar avatar Aug 05 '22 07:08 safetycar