forked from qt-creator/qt-creator
FakeVim: Allow to jump to the first quoted block on line
Task-number: QTCREATORBUG-12128 Change-Id: I3376a2f75307eaad1671d5b8b70ac7ba3035fdb8 Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
@@ -8229,7 +8229,7 @@ bool FakeVimHandler::Private::selectQuotedStringTextObject(bool inner,
|
||||
QTextCursor tc2(document());
|
||||
while (tc2 <= tc) {
|
||||
tc1 = document()->find(quote, tc2);
|
||||
if (tc1.isNull() || tc1.anchor() > tc.position())
|
||||
if (tc1.isNull())
|
||||
return false;
|
||||
tc2 = document()->find(quote, tc1);
|
||||
if (tc2.isNull())
|
||||
|
||||
Reference in New Issue
Block a user