Skip to content

Instantly share code, notes, and snippets.

@JamoCA
Created May 15, 2017 22:40
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JamoCA/bb5ea4dcc3b06f3d35fc1426d3d5b105 to your computer and use it in GitHub Desktop.
Save JamoCA/bb5ea4dcc3b06f3d35fc1426d3d5b105 to your computer and use it in GitHub Desktop.
HomeSite and ColdFusion Studio AutoHotKey Shortcuts for ColdFusion Builder 2016
;ColdFusion Builder 2016 (Homesite) shortcuts 2017-05-15
;This is a a work-in-progress
#IfWinActive ahk_exe CFBuilder.exe
F3::^k ;Find Next F3
^g::^l ;Go To Line CTRL+G
^+>:: Send %A_Tab% ;Indent Selected Code Block CTRL+SHIFT+>
^+<:: Send +%A_Tab% ;Unindent Selected Code Block CTRL+SHIFT+<
^b:: Send ^tb ;Insert strong tag CTRL+B
^+p:: Send ^tp ;Insert p tag CTRL+SHIFT+P
^i:: Send ^ti ;Insert italic tag CTRL+I
^3:: Send ^th ;Wrap in ## CTRL+3
;^+space:: Send ^tn ;Insert nbsp tag CTRL+SHIFT+SPACE
^,:: Send tagstart^j ;Insert Start tag < > Ctrl + , (comma)
^.:: Send tagend^j ;Insert End tag < /> Ctrl + . (period)
^+b:: Send ^tr ;Insert BR tag Shift + Ctrl + B
^ENTER:: Send ^tr{enter} ;Insert BR tag and new line CTRL+ENTER
^m::^!m ;Find Matching Tag
^+m:: Send ^tm ;Insert Comment tag (CTRL+M)
^+TAB:: Send !{left} ;Switch tab (left) (CTRL+SHIFT+TAB)
^TAB:: Send !{right} ;Switch tab (right) (CTRL+TAB)
^+a:: Send ^tl ;Anchor (CTRL+SHIFT+A)
^+z:: Send ^y ;Redo (Ctrl+shift+Z)
;NOTE: "tagstart" and "tagend" snippets need to be created that contain starting and ending brackets.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment