Autocomplete doesn’t work when editing an existing doc.

It works fine when typing forward, but when I try to edit an existing doc, it doesn’t trigger the completion source at all.

CleanShot 2025-03-28 at 16.54.51

 function completionSource(context: CompletionContext): CompletionResult | null {
      const before = context.matchBefore(/\w+/);

      if (!before) {
        return null;
      }

      return {
        from: before.from,
        options: [{ label: 'hello' }]
      }
    }

 override: [completionSource],

Please pick one channel, the bug tracker or the forum. But don’t post to both.

(Duplicate of #1545)