Skip to content

Instantly share code, notes, and snippets.

@cassidoo
Last active June 2, 2026 02:50
Show Gist options
  • Select an option

  • Save cassidoo/574860ce40d4527527d5ae7cc38c23d7 to your computer and use it in GitHub Desktop.

Select an option

Save cassidoo/574860ce40d4527527d5ae7cc38c23d7 to your computer and use it in GitHub Desktop.
Copilot demo hotkeys
; All Prompt Hotkeys Combined - AutoHotkey v2
; Run this single file to register all hotkeys
#Requires AutoHotkey v2.0
; Ctrl+1 - Go-Live Issues
^1:: {
A_Clipboard := "We are going to release this application. List the top 5 GitHub issues we need to address before go-live. Display them in a table with relevant emoji."
Send "^v"
}
; Ctrl+2 - Implement in new sessions
^2:: {
A_Clipboard := "Implement all of these in new sessions. Prefix each session name with " . Chr(34) . "GO-LIVE:" . Chr(34) . "."
Send "^v"
}
; Ctrl+3 - Add reordering
^3:: {
A_Clipboard := "add reordering to this"
Send "^v"
}
; Ctrl+4 - Gesture Review Canvas
^4:: {
A_Clipboard := "open a new instance of the gesture review canvas"
Send "^v"
}
; Ctrl+5 - Rayfin Up + Enter + switch to Edge
^5:: {
A_Clipboard := "rayfin up --workspace " . Chr(34) . "Signal" . Chr(34)
Send "^v"
Sleep 200
Send "{Enter}"
Sleep 7000
Run "msedge.exe https://lucky-forge-7d2eed4708-westus.webapp.fabricapps.net/"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment