Mentions list does not disappear after clearing out all characters with backspace/delete keys

Created on 8 January 2020, about 5 years ago
Updated 17 March 2025, 19 days ago

After mentioning the @mention list does not go away even when text is fully cleared with backspace/delete key.

The problem is in this file -
modules/contrib/ckeditor_mentions/js/plugins/mentions/plugin.js -

The only keys accepted to clear mention list are -
['Enter', 'ArrowLeft', 'ArrowUp', 'ArrowRight', 'ArrowDown', 'Delete', 'Home'], line 155 -

function breakCheck(key) {
        var special = ['Enter', 'ArrowLeft', 'ArrowUp', 'ArrowRight', 'ArrowDown', 'Delete', 'Home'];
        for (var i = 0; i < special.length; i++) {
          if (special[i] === key) {
            return true;
          }
        }
        return false;
}

If we add the backspace key to above array, this will cause another issue. The moment backspace key is hit, the list will go away, even though there are still chars left after the "@" and it should show the list accordingly.

For this, there is code at line 57 -

if (key === 'Backspace') {
              // If backspacing during a selection pop the last item in the array out.
              editorInstance.replacementChars.pop();

We need to add code to this block with the logic that list should get cleared if the array "editorInstance.replacementChars" becomes empty.

Feature request
Status

Closed: outdated

Component

Code

Created by

🇮🇳India deepak_123

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

Production build 0.71.5 2024