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

Does not respect spacing in multiline statements.

Open iseahound opened this issue 2 years ago • 2 comments

None() {
    ; Removes all events.
    return this
        .OnEvent("LeftMouseDown")
        .OnEvent("MiddleMouseDown")
        .OnEvent("RightMouseDown")
}

becomes

None() {
    ; Removes all events.
    return this         .OnEvent("LeftMouseDown")         .OnEvent("MiddleMouseDown")         .OnEvent("RightMouseDown")
}

I bet somewhere a "`n" should be "`r`n" as per windows convention...

iseahound avatar Apr 04 '22 03:04 iseahound