Last active
December 11, 2015 10:18
-
-
Save andreipak/a525267a58c29581e17c to your computer and use it in GitHub Desktop.
AutoHotkey Config file for Win8 under VMWare Fusion
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
| ; AutoHotkey Config file for Win8 under VWWare Fusion | |
| ; revision: 20151211 | |
| ; wget https://gist.githubusercontent.com/andreipak/a525267a58c29581e17c/raw --no-check-certificate -O C:\Users\apak\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup\AutoHotkey.ahk | |
| ;Ctrl-] to Escape | |
| ^[:: | |
| SetKeyDelay, 10, 10 | |
| Send {Escape} | |
| return | |
| ;Right Alt to Insert | |
| RAlt::Insert | |
| ; AppsKey | |
| RWin & RAlt::Send {AppsKey} | |
| ;Alt + Space to press LWin [with Start8] | |
| ;2015-06-25 does not work | |
| ;<!Space:: | |
| ;Send {RWin} | |
| ;return | |
| <^+Right:: | |
| Send +{End} | |
| return | |
| <^+Left:: | |
| Send +{Home} | |
| return | |
| <^Right:: | |
| Send {End} | |
| return | |
| <^Left:: | |
| Send {Home} | |
| return | |
| ; Google Chrome | |
| ;#IfWinActive, ahk_class IEFrame | |
| ; Show Web Developer Tools with cmd + alt + i | |
| ;#!i::Send {F12} | |
| ; Show source code with cmd + alt + u | |
| ;#!u::Send ^u | |
| ;#r:: run notepad | |
| ;#IfWinActive |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment