aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRazetime <rraghu.11502@gmail.com>2021-10-29 10:09:48 +0530
committerRazetime <rraghu.11502@gmail.com>2021-10-29 10:09:48 +0530
commit055dac7ffe3c6e746a97a2988b9efd20cded3135 (patch)
tree02c00797fbaa57c9774e8290f57760b8c5627d68
parent60925955a77b4f31b5308e1ceb6d71d055b17b06 (diff)
Add ⋈ to Autohotkey script and executable
-rw-r--r--editors/autohotkey-win/bqn.ahk5
-rw-r--r--editors/autohotkey-win/bqn.exebin1223680 -> 1223680 bytes
2 files changed, 5 insertions, 0 deletions
diff --git a/editors/autohotkey-win/bqn.ahk b/editors/autohotkey-win/bqn.ahk
index 8d33f248..60e009db 100644
--- a/editors/autohotkey-win/bqn.ahk
+++ b/editors/autohotkey-win/bqn.ahk
@@ -311,7 +311,12 @@ RAlt & '::
return
RAlt & z::
+ ShiftState := GetKeyState("Shift", "P")
+ If (ShiftState) {
+ Send, ⋈
+ } Else {
Send, ⥊
+ }
return
RAlt & x::
diff --git a/editors/autohotkey-win/bqn.exe b/editors/autohotkey-win/bqn.exe
index ba3ba4c5..919cc090 100644
--- a/editors/autohotkey-win/bqn.exe
+++ b/editors/autohotkey-win/bqn.exe
Binary files differ