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 3dfea10 commit e313555Copy full SHA for e313555
frontend/src/ts/input/handlers/insert-text.ts
@@ -148,7 +148,7 @@ export async function onInsertText(options: OnInsertTextParams): Promise<void> {
148
// word navigation check
149
const noSpaceForce =
150
isFunboxActiveWithProperty("nospace") &&
151
- TestInput.input.current.length === TestWords.words.getCurrent().length;
+ (testInput + data).length === TestWords.words.getCurrent().length;
152
const shouldGoToNextWord =
153
((charIsSpace || charIsNewline) && !shouldInsertSpace) || noSpaceForce;
154
0 commit comments