hotstring
hotstring copied to clipboard
Trigger a Hotstring through dynamic means with Autohotkey
If you use ``` ::фыв::привет ``` in plain AHK - the hotstring won't work out upon typing "asd" (those Cyrillic letters "фыв" lay on the same keyboard keys as "asd")....
mentioned in issue #5 the following example was previously failing, but is fixed with this commit: ```autohotkey Hotstring("Trigger2", "replace", 2) replace($) { ; $ == 'trigger' MsgBox % "'" ....
For the following script, I pasted your code to the bottom and ran it. Many of the tests I created are working, but a few do not. ``` #NoEnv #SingleInstance...
reported in Issue #5 this example previously woulnd't clear: `Hotstring("ahk", "autohotkey", 2)`
this example in the readme fails: ```autohotkey Hotstring("i)colou?rs","$0 $0 everywhere!", 3) ; Regex, Case insensitive ; colors -> 'colors colors everywhere!' ; colours -> 'colours colours everywhere!' ``` this PR...