summaryrefslogtreecommitdiff
path: root/windows/neo-vars/src/source/varsfunctions.ahk
diff options
context:
space:
mode:
Diffstat (limited to 'windows/neo-vars/src/source/varsfunctions.ahk')
-rw-r--r--windows/neo-vars/src/source/varsfunctions.ahk11
1 files changed, 11 insertions, 0 deletions
diff --git a/windows/neo-vars/src/source/varsfunctions.ahk b/windows/neo-vars/src/source/varsfunctions.ahk
index 079dadc..8fae92b 100644
--- a/windows/neo-vars/src/source/varsfunctions.ahk
+++ b/windows/neo-vars/src/source/varsfunctions.ahk
@@ -200,6 +200,17 @@ SendBlindShiftFixed(char, theseq) {
send % "{blind}{RShift Up}" . theseq . "{RShift Down}"
else
send % "{blind}" . theseq
+ else if (DOSH%char%)
+ if (IsShiftLPressed)
+ if (IsShiftRPressed)
+ send % "{blind}" . theseq
+ else
+ send % "{blind}{RShift Down}" . theseq . "{RShift Up}"
+ else
+ if (IsShiftRPressed)
+ send % "{blind}{Shift Down}" . theseq . "{Shift Up}"
+ else
+ send % "{blind}{Shift Down}" . theseq . "{Shift Up}"
else
send % "{blind}" . theseq
}