pmb6tz / windows-desktop-switcher

An AutoHotKey script for Windows that lets a user change virtual desktops by pressing CapsLock + <num>.
MIT License
1.23k stars 230 forks source link

fix: Add AHK Version Requirement #88

Closed crossan007 closed 1 year ago

crossan007 commented 1 year ago

Adds a #Requires directive (https://www.autohotkey.com/docs/v1/lib/_Requires.htm) to the beginning of the script so that AHK Version 2 knows to run this with the v1 interpreter.

Preferably, this whole script should be refactored to support V2, but this provides immediate support on the V2 engine (via AHK's automatic engine switcher) for users who are brand new to AHK (such as myself)

Closes #86

Elijas commented 1 year ago

Thank you!