AutoHotKey to Translate the Copilot button to the snipping tool

AutoHotKey to Translate the Copilot button for the Snipping Tool

New laptops are having an amazing Copilot key that is exactly zero useful for me. Therefore I use AutoHotKey to map this new key to the snipping tool.

AutoHotkey is a free, open-source scripting language that can be used on Windows to create scripts for various tasks - e.g. managing your keyboard shortcuts.

Here the part for the .ahk file:


; This is Win+Shift+F23 (the Copilot key) translated to Win+Shift+S (opens Snipping Tool)
+#F23::Send '#+s'


Links

AutoHotKey