Skip to content

Instantly share code, notes, and snippets.

@andyhuey
Created April 26, 2013 11:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andyhuey/5466566 to your computer and use it in GitHub Desktop.
Save andyhuey/5466566 to your computer and use it in GitHub Desktop.
remap MorphX comment/un-comment key commands
; comment/uncomment, the way it was intended to be...
#IfWinActive ahk_class AxMainFrame
^k::
Transform, CtrlC, Chr, 3
Transform, CtrlU, Chr, 21
Input Key, L1 M T1
if Key = %CtrlC%
Send ^e^c
if Key = %CtrlU%
Send ^e^u
return
#IfWinActive
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment