Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit 2e89767

Browse files
Merge pull request #1841 from montegoulding/bugfix-20706
[[ Bug 20706 ]] Fix Ctrl | Cmd + left in SE
2 parents 88769be + 5bb6293 commit 2e89767

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

Toolset/palettes/script editor/behaviors/revsecommoneditorbehavior.livecodescript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2385,7 +2385,7 @@ on rawKeyDown pKey
23852385
end if
23862386
else
23872387
# For Mac: Ctrl-Left / Cmd-Left / Ctrl-A (Mac)
2388-
if (pKey is kKeyUpArrow and \
2388+
if (pKey is kKeyLeftArrow and \
23892389
(the eventCommandKey is down or \
23902390
the eventControlKey is down) and \
23912391
the eventShiftKey is up and \

notes/bugfix-20706.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Ensure Ctrl | Cmd + left arrow moves cursor to beginning of line

0 commit comments

Comments
 (0)