mark-wiemer-org / ahkpp

AutoHotkey Plus Plus (AHK++) - AutoHotkey v1 and v2 support for VS Code
https://marketplace.visualstudio.com/items?itemName=mark-wiemer.vscode-autohotkey-plus-plus
Other
152 stars 10 forks source link

Un-indented `Return` command after fall-through single line hotkey. #442

Closed kyklish closed 3 months ago

kyklish commented 3 months ago

Description

Un-indented Return command after fall-through single line hotkey.

Expected formatted output snippet

F1::
F2::code
foo() {
    code
    Return
}

Actual formatted output snippet

F1::
F2::code
foo() {
    code
Return
}