https://bugs.kde.org/show_bug.cgi?id=346687

--- Comment #5 from Tsu Jan <tsujan2...@gmail.com> ---
> could give some inspirations for a fix in Kate

Don't know about Kate's code but, for example, inside keyPressEvent(QKeyEvent
*event) this can be done for a text-edit:

if (event->key() == 0x200c)
{
    insertPlainText (QChar (0x200C));
    event->accept();
    return;
}

It shouldn't be needed after the Qt fix but, apparently, Kate's behavior is
different from that of QPlainTextEdit.

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to