Skip to content

Instantly share code, notes, and snippets.

@kshwetabh
Created December 21, 2012 16:05
Show Gist options
  • Save kshwetabh/4353699 to your computer and use it in GitHub Desktop.
Save kshwetabh/4353699 to your computer and use it in GitHub Desktop.
Various AutoHotKey shortcut key combinations.
; 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