Ahk-Best-Practices icon indicating copy to clipboard operation
Ahk-Best-Practices copied to clipboard

[WIP] AutoHotkey Best Practices

Results 3 Ahk-Best-Practices issues
Sort by recently updated
recently updated
newest added

Add a recommendation of saving scripts with **UTF-8 with BOM** character encoding ## Example ```autohotkey ::test::ȘșȚț✓ ``` ### Bad `A_IsUnicode` :ok_hand: Script saved with **UTF-8** encoding :x: ```autohotkey ; Text...

Can there be a section discussing a consistent capitalization style for commands and variables? ^j:: msgbox, Hello World! ; lowercase msgBox, Hello World! ; camelCase MsgBox, Hello World! ; CamelCase...

I think libraries and codes(like. functions) from other files should be included separately under a declarative comment like: ``` autohotkey /* ********************************** libraries used *********************************** */ #include libcrypt.ahk #include tf.ahk...