Last active
August 29, 2015 14:21
-
-
Save billglover/0b1c82978720d79309e8 to your computer and use it in GitHub Desktop.
Collection of application short cuts for #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
#NoEnv | |
#SingleInstance, force | |
SendMode Input | |
SetWorkingDir %A_ScriptDir% | |
; AppsKey + v - paste plain text | |
AppsKey & v:: | |
TempText := ClipBoard | |
If (TempText != "") | |
PutText(ClipBoard) | |
Return | |
PutText(MyText) | |
{ | |
SavedClip := ClipboardAll | |
Clipboard = ; For better compatability | |
Sleep 20 ; with Clipboard History | |
Clipboard := MyText | |
Send ^v | |
Sleep 100 | |
Clipboard := SavedClip | |
Return | |
} | |
; AppsKey + c = start terminal in full screen | |
AppsKey & c:: | |
Run, "c:\tools\cmder\Cmder.exe", C:\Users\bill.glover, Max | |
; AppsKey + e = start editor in full screen | |
AppsKey & e:: | |
Run, "C:\Program Files\Sublime Text 3\sublime_text.exe", C:\Users\bill.glover, Max |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment