Created
August 19, 2014 03:39
-
-
Save markryd/12bd0c0a0c8068474e18 to your computer and use it in GitHub Desktop.
Kill and restart Visual Studio AutoHotKey
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
| ^!z:: | |
| SetTitleMatchMode RegEx | |
| IfWinExist, .*NextGen.*Visual Studio | |
| WinKill ; use the window found above | |
| Run, "C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\IDE\devenv.exe" C:\dev\Centium\nextgen\NextGen.sln ; your sln | |
| return |
becdetat
commented
Aug 26, 2014
Author
much more betterer.
Author
^!z::
SetTitleMatchMode RegEx
Run, iexplore.exe http://tableflipper.com/
RunWait, taskkill /F /FI "WINDOWTITLE eq NextGen*" /IM devenv.exe
Run, "C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\IDE\devenv.exe" C:\dev\Centium\nextgen\NextGen.sln
return
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment