; This is a simple and pretty generic example of an AutoHotkey script to run a ; program when you press a keyboard shortcut. Add as many of these as you want ; to a .ahk file, and set that to be run at startup. ; See the Hotkeys reference [1] for details of the modifiers and keys available. ; [1]: http://www.autohotkey.com/docs/Hotkeys.htm ; Win+Alt+G - Open Gmail in Chrome #!g:: Run "C:\Program Files\Google\Chrome\Application\chrome.exe" --app="https://mail.google.com/mail/" Return ; Win+Shift+Break - Edit this file #+Break:: Run "c:\Program Files\Vim\vim73\gvim.exe" "d:\AutoHotkey.ahk" Return