Skip to content

Instantly share code, notes, and snippets.

@hoest
Created February 13, 2014 07:43
Show Gist options
  • Save hoest/8971325 to your computer and use it in GitHub Desktop.
Save hoest/8971325 to your computer and use it in GitHub Desktop.
AutoHotkey script
#SingleInstance force
; Shortcut keys
#i::Run, "C:\Program Files\Internet Explorer\iexplore.exe", , %HOME%
#b::Run, "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe", , %HOME%
#t::Run, "C:\Program Files\ConEmu\ConEmu64.exe", , %HOME%
#v::Run, "C:\Program Files (x86)\Vim\vim74\gvim.exe", , %HOME%
#s::Run, "C:\Program Files\Sublime Text 3\sublime_text.exe", , %HOME%
#c::Run, "%windir%\system32\calc.exe", , %HOME%
; remap Capslock to CTRL
Capslock::Ctrl
; SHIFT+CapsLock => normal CapsLock function
+Capslock::Capslock
; Right WIN-key => context-menu
RWin::AppsKey
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment