Created
April 3, 2018 21:44
-
-
Save 0x4a/2127ba61939f504d3ebd7c28292162d6 to your computer and use it in GitHub Desktop.
wrap clipboard in html tags
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
; only apply to editor window (Notepad2-mod) | |
#ifWinActive ahk_class Notepad2U | |
{ | |
$^+b::htmlBold() ; STRG + Shift + B | |
} | |
htmlBold() | |
{ | |
oldClip := ClipboardAll | |
Send ^x | |
clipboard:="<strong>" clipboard "</strong>" | |
Send ^v | |
clipboard:=oldClip | |
oldClip:="" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment