diff --git a/src/js/input-controller.js b/src/js/input-controller.js index af0dade58..282d4d014 100644 --- a/src/js/input-controller.js +++ b/src/js/input-controller.js @@ -355,7 +355,11 @@ function handleChar(char, charIndex) { } } - if (TestLogic.words.getCurrent()[charIndex] !== "\n" && char === "\n") { + if ( + Config.mode !== "zen" && + TestLogic.words.getCurrent()[charIndex] !== "\n" && + char === "\n" + ) { return; }