We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed47e2f commit 9a6fe31Copy full SHA for 9a6fe31
frontend/src/ts/controllers/input-controller.ts
@@ -734,10 +734,9 @@ function handleChar(
734
if (
735
activeWordTopBeforeJump < newActiveTop &&
736
!TestUI.lineTransition &&
737
- TestInput.input.current.length > 1 &&
738
- Config.indicateTypos !== "replace"
+ TestInput.input.current.length > 1
739
) {
740
- if (Config.mode === "zen") {
+ if (Config.mode === "zen" || Config.indicateTypos === "replace") {
741
if (!Config.showAllLines) void TestUI.lineJump(activeWordTopBeforeJump);
742
} else {
743
TestInput.input.current = TestInput.input.current.slice(0, -1);
0 commit comments