fakevim: wrong indentation

Merge-request: 96
Reviewed-by: hjk <qtc-committer@nokia.com>
This commit is contained in:
Martin Aumüller
2010-01-05 18:42:23 +01:00
committed by hjk
parent 24e1ffb193
commit d13f0bb2ce

8
src/plugins/fakevim/fakevimhandler.cpp Normal file → Executable file
View File

@@ -796,10 +796,10 @@ void FakeVimHandler::Private::finishMovement(const QString &dotCommand)
m_submode = NoSubMode; m_submode = NoSubMode;
} else if (m_submode == DeleteSubMode) { } else if (m_submode == DeleteSubMode) {
if (m_rangemode == RangeCharMode) { if (m_rangemode == RangeCharMode) {
if (m_movetype == MoveInclusive) if (m_movetype == MoveInclusive)
moveRight(); // correction moveRight(); // correction
if (anchor() >= position()) if (anchor() >= position())
m_anchor++; m_anchor++;
} }
if (!dotCommand.isEmpty()) if (!dotCommand.isEmpty())
setDotCommand("d" + dotCommand); setDotCommand("d" + dotCommand);