Skip to content

Instantly share code, notes, and snippets.

@kenny-evitt
Last active August 29, 2015 14:01
Show Gist options
  • Save kenny-evitt/c8b2bbdac8ece706ae00 to your computer and use it in GitHub Desktop.
Save kenny-evitt/c8b2bbdac8ece706ae00 to your computer and use it in GitHub Desktop.
AutoHotkey hotkeys for FogBugz
; 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