diff options
Diffstat (limited to 'windows/autohotkey/Source/Methods-Other.ahk')
-rw-r--r-- | windows/autohotkey/Source/Methods-Other.ahk | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/windows/autohotkey/Source/Methods-Other.ahk b/windows/autohotkey/Source/Methods-Other.ahk index 610f763..dbd17d7 100644 --- a/windows/autohotkey/Source/Methods-Other.ahk +++ b/windows/autohotkey/Source/Methods-Other.ahk @@ -275,7 +275,10 @@ outputChar(val1,val2) c := val1
else
c := val2
- send % "{blind}" . c
+ if GetKeyState("Shift","P") and isMod2Locked
+ send % "{blind}{Shift Up}" . c . "{Shift Down}"
+ else
+ send % "{blind}" . c
if (PriorDeadKey = "comp")
CompKey := c
}
|