Last active
August 29, 2015 14:01
-
-
Save kenny-evitt/c8b2bbdac8ece706ae00 to your computer and use it in GitHub Desktop.
AutoHotkey hotkeys for FogBugz
This file contains 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
; Surround selected text with an HTML snippet for highlighting technical details (that aren't code) in FogBugz case event comments. | |
; Alt + Shift + t | |
!+t::SendInput ^x<span style="background-color:WhiteSmoke;border:1px dotted Black">^v</span> | |
; Include 'quote trigger text' for forwarding emails to FogBugz; all contents following the text will be hidden in FogBugz. | |
; Alt + Shift + o | |
!+o::SendInput -----Original Message----- | |
; Surround selected text with an HTML snippet for highlighting code in FogBugz wiki articles without using a Code Snippet. | |
; Alt + Shift + c | |
!+c::SendInput ^x<span class="code">^v</span> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment