Created
December 21, 2012 16:05
-
-
Save kshwetabh/4353699 to your computer and use it in GitHub Desktop.
Various AutoHotKey shortcut key combinations.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; Opens new appointment in Outlook, Win a | |
;***************************************************************** | |
#a:: Run C:\Program Files\Microsoft Office\Office12\OUTLOOK.EXE /c ipm.appointment | |
; Opens new task in Outlook, Win t | |
;***************************************************************** | |
#t:: Run C:\Program Files\Microsoft Office\Office12\OUTLOOK.EXE /c ipm.task | |
; Launches specified search in default browser on duckduckgo.com website, ;s | |
;***************************************************************** | |
:*:;s:: | |
InputBox, SearchTerm, Search | |
if SearchTerm <> "" | |
Run https://duckduckgo.com/?q=%SearchTerm% | |
return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment