Toggle suspend:
> f1::suspend
Close the script:
> f2::exitapp
Reload the script:
> f3::reload
Edit the script:
> f4::edit
<br>
> _I find that including this speeds up editing / testing:_
```ahk
browser_back::edit ;edit in code editor
browser_forward:: ;save and exit editor
send ^{s}
send !{f4}
return
browser_refresh::reload ;refresh
```
> _You could add reload at the bottom of the_ browser_forward *hotkey,
but I prefer having it separate.*