kate: remove FIXME

ye, I guess it was and maybe still is

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
Ivailo Monev 2024-04-07 18:52:04 +03:00
parent 5d8583e545
commit ad791495bb

View file

@ -533,8 +533,6 @@ void KateOnTheFlyChecker::deleteMovingRanges(const QList<KTextEditor::MovingRang
KTextEditor::Range KateOnTheFlyChecker::findWordBoundaries(const KTextEditor::Cursor& begin,
const KTextEditor::Cursor& end)
{
// FIXME: QTextBoundaryFinder should be ideally used for this, but it is currently
// still broken in Qt
const QRegExp boundaryRegExp("\\b");
const QRegExp boundaryQuoteRegExp("\\b\\w+'\\w*$"); // handle spell checking of "isn't", "doesn't", etc.
const QRegExp extendedBoundaryRegExp("(\\W|$)");