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

--- Comment #1 from abyss <abhinav.s.deshpa...@gmail.com> ---
I added a user-defined script that lets me work around this. The script is
activated when I press the key `'`.
If anyone else is interested, here it is:

document.editBegin();
var range = view.selectionRange();

if ( range.isValid() ) {
        view.clearSelection();
        document.insertText(range.end,"'");
        var c = view.cursorPosition();
        document.insertText(range.start,"'");
        c.column = c.column + 1;
        view.setCursorPosition(c);
}
else {
        document.insertText("'");
}
document.editEnd();

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

Reply via email to