Skip to content

Commit 7d53e9e

Browse files
committed
impr(typing): add ʻ to the list of interchangable 'quotelike' characters
this means it can be typed correctly with the usual '
1 parent 772e4a1 commit 7d53e9e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

frontend/src/ts/controllers/input-controller.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -425,12 +425,14 @@ function isCharCorrect(char: string, charIndex: number): boolean {
425425
char === "‘" ||
426426
char === "'" ||
427427
char === "ʼ" ||
428-
char === "׳") &&
428+
char === "׳" ||
429+
char === "ʻ") &&
429430
(originalChar === "’" ||
430431
originalChar === "‘" ||
431432
originalChar === "'" ||
432433
originalChar === "ʼ" ||
433-
originalChar === "׳")
434+
originalChar === "׳" ||
435+
originalChar === "ʻ")
434436
) {
435437
return true;
436438
}

0 commit comments

Comments
 (0)