Get AutoHotKey Hotstrings back #194
Replies: 2 comments 1 reply
-
Yea it sounds like kanata and ahk are competing over the Windows keyboard hook mechanism. You could try the interception driver which will clearly differentiate the two and won't matter for startup order. The usual interception bug caveats apply though. I'll think about ways to get ahk or kanata or play nicely with the other when using the default hook mechanism. |
Beta Was this translation helpful? Give feedback.
-
I have moved away from hotstrings, since I could not use the interception driver in the past; interception solves all the issues. only tested with Autohotkey V1 and these settings
simple Hotstring definition works
meanwhile there is Autohotkey V2 but I never tested it, my scripts are not compatible. |
Beta Was this translation helpful? Give feedback.
-
I was using ahk hotstrings for years and prefer it over leader keys
pros
cons
First I came up with some sort of ending key solution
type a command word then hit
F20
orAltGr+i
or what ever and the word gets replaced.good but still not as good as the original Hotstrings
So I changed my config from
to
I still type
fl,
but,
is now an EndChar that gets cleaned up because of theo
optionfl
is not auto removed becauseb0
option (ahk would remove 4 letters) and are backspaced {bs 2} by meBeta Was this translation helpful? Give feedback.
All reactions