Files
qt-creator/src/plugins/fakevim/fakevimhandler.cpp

2927 lines
96 KiB
C++
Raw Normal View History

/**************************************************************************
**
** This file is part of Qt Creator
**
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
**
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** Commercial Usage
**
** Licensees holding valid Qt Commercial licenses may use this file in
** accordance with the Qt Commercial License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Nokia.
**
** GNU Lesser General Public License Usage
**
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 2.1 requirements
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** If you are unsure which license is appropriate for your use, please
2009-08-14 09:30:56 +02:00
** contact the sales department at http://qt.nokia.com/contact.
**
**************************************************************************/
#include "fakevimhandler.h"
//
// ATTENTION:
//
// 1 Please do not add any direct dependencies to other Qt Creator code here.
// Instead emit signals and let the FakeVimPlugin channel the information to
// Qt Creator. The idea is to keep this file here in a "clean" state that
// allows easy reuse with any QTextEdit or QPlainTextEdit derived class.
//
// 2 There are a few auto tests located in ../../../tests/auto/fakevim.
// Commands that are covered there are marked as "// tested" below.
//
// 3 Some conventions:
//
// Use 1 based line numbers and 0 based column numbers. Even though
// the 1 based line are not nice it matches vim's and QTextEdit's 'line'
// concepts.
//
// Do not pass QTextCursor etc around unless really needed. Convert
// early to line/column.
//
// There is always a "current" cursor (m_tc). A current "region of interest"
// spans between m_anchor (== anchor()) and m_tc.position() (== position())
// The value of m_tc.anchor() is not used.
2009-10-16 11:30:46 +02:00
//
2009-03-30 12:40:08 +02:00
#include <utils/qtcassert.h>
2008-12-19 16:20:39 +01:00
#include <QtCore/QDebug>
#include <QtCore/QFile>
2008-12-19 16:20:39 +01:00
#include <QtCore/QObject>
#include <QtCore/QPointer>
2009-01-08 17:21:51 +01:00
#include <QtCore/QProcess>
2008-12-19 16:20:39 +01:00
#include <QtCore/QRegExp>
#include <QtCore/QTextStream>
2009-01-16 09:56:08 +01:00
#include <QtCore/QtAlgorithms>
2008-12-19 16:20:39 +01:00
#include <QtCore/QStack>
2009-01-08 17:21:51 +01:00
#include <QtGui/QApplication>
2008-12-19 16:20:39 +01:00
#include <QtGui/QKeyEvent>
#include <QtGui/QLineEdit>
#include <QtGui/QPlainTextEdit>
#include <QtGui/QScrollBar>
#include <QtGui/QTextBlock>
#include <QtGui/QTextCursor>
2009-01-06 11:33:07 +01:00
#include <QtGui/QTextDocumentFragment>
2008-12-19 16:20:39 +01:00
#include <QtGui/QTextEdit>
#include <climits>
//#define DEBUG_KEY 1
#if DEBUG_KEY
# define KEY_DEBUG(s) qDebug() << s
#else
# define KEY_DEBUG(s)
#endif
//#define DEBUG_UNDO 1
#if DEBUG_UNDO
# define UNDO_DEBUG(s) qDebug() << << m_tc.document()->availableUndoSteps() << s
#else
# define UNDO_DEBUG(s)
#endif
using namespace Utils;
2009-03-30 12:40:08 +02:00
namespace FakeVim {
namespace Internal {
///////////////////////////////////////////////////////////////////////
//
// FakeVimHandler
//
///////////////////////////////////////////////////////////////////////
2009-04-14 15:47:25 +02:00
#define StartOfLine QTextCursor::StartOfLine
#define EndOfLine QTextCursor::EndOfLine
#define MoveAnchor QTextCursor::MoveAnchor
#define KeepAnchor QTextCursor::KeepAnchor
#define Up QTextCursor::Up
#define Down QTextCursor::Down
#define Right QTextCursor::Right
#define Left QTextCursor::Left
#define EndOfDocument QTextCursor::End
#define StartOfDocument QTextCursor::Start
#define EDITOR(s) (m_textedit ? m_textedit->s : m_plaintextedit->s)
const int ParagraphSeparator = 0x00002029;
using namespace Qt;
2008-12-19 16:20:39 +01:00
enum Mode
{
InsertMode,
CommandMode,
ExMode,
SearchForwardMode,
SearchBackwardMode,
2008-12-19 16:20:39 +01:00
};
2008-12-19 16:20:39 +01:00
enum SubMode
{
NoSubMode,
ChangeSubMode, // used for c
DeleteSubMode, // used for d
FilterSubMode, // used for !
2009-04-03 16:33:28 +02:00
IndentSubMode, // used for =
RegisterSubMode, // used for "
2009-01-22 15:08:50 +01:00
ReplaceSubMode, // used for R and r
ShiftLeftSubMode, // used for <
ShiftRightSubMode, // used for >
2009-04-03 16:33:28 +02:00
WindowSubMode, // used for Ctrl-w
YankSubMode, // used for y
ZSubMode, // used for z
CapitalZSubMode // used for Z
2008-12-19 16:20:39 +01:00
};
2008-12-26 00:18:03 +01:00
enum SubSubMode
{
2009-01-22 15:08:50 +01:00
// typically used for things that require one more data item
// and are 'nested' behind a mode
2008-12-26 00:18:03 +01:00
NoSubSubMode,
FtSubSubMode, // used for f, F, t, T
MarkSubSubMode, // used for m
BackTickSubSubMode, // used for `
TickSubSubMode, // used for '
2008-12-26 00:18:03 +01:00
};
enum VisualMode
{
NoVisualMode,
VisualCharMode,
VisualLineMode,
VisualBlockMode,
};
2009-01-16 16:57:00 +01:00
enum MoveType
{
MoveExclusive,
MoveInclusive,
2009-01-16 17:38:15 +01:00
MoveLineWise,
2009-01-16 16:57:00 +01:00
};
enum RangeMode
{
RangeCharMode,
RangeLineMode,
RangeBlockMode,
};
enum EventResult
{
EventHandled,
EventUnhandled,
EventPassedToCore
};
struct CursorPosition
{
// for jump history
CursorPosition() : position(-1), scrollLine(-1) {}
CursorPosition(int pos, int line) : position(pos), scrollLine(line) {}
int position; // Position in document
int scrollLine; // First visible line
};
struct Register
{
Register() : rangemode(RangeCharMode) {}
Register(const QString &c, RangeMode m) : contents(c), rangemode(m) {}
QString contents;
RangeMode rangemode;
};
struct Range
{
Range()
: beginPos(-1), endPos(-1), rangemode(RangeCharMode)
{}
Range(int b, int e, RangeMode m = RangeCharMode)
: beginPos(qMin(b, e)), endPos(qMax(b, e)), rangemode(m)
2009-10-16 11:30:46 +02:00
{}
int beginPos;
int endPos;
RangeMode rangemode;
};
QDebug &operator<<(QDebug &ts, const QList<QTextEdit::ExtraSelection> &sels)
{
foreach (QTextEdit::ExtraSelection sel, sels)
ts << "SEL: " << sel.cursor.anchor() << sel.cursor.position();
return ts;
}
2009-06-11 17:09:05 +02:00
QString quoteUnprintable(const QString &ba)
2009-01-16 16:15:01 +01:00
{
2009-06-11 17:09:05 +02:00
QString res;
for (int i = 0, n = ba.size(); i != n; ++i) {
QChar c = ba.at(i);
if (c.isPrint())
res += c;
else
res += QString("\\x%1").arg(c.unicode(), 2, 16);
}
return res;
2009-01-16 16:15:01 +01:00
}
2009-10-07 09:25:19 +02:00
inline QString msgE20MarkNotSet(const QString &text)
{
return FakeVimHandler::tr("E20: Mark '%1' not set").arg(text);
}
class FakeVimHandler::Private
{
public:
Private(FakeVimHandler *parent, QWidget *widget);
EventResult handleEvent(QKeyEvent *ev);
bool wantsOverride(QKeyEvent *ev);
2009-04-06 10:58:48 +02:00
void handleCommand(const QString &cmd); // sets m_tc + handleExCommand
void handleExCommand(const QString &cmd);
void fixMarks(int positionAction, int positionChange); //Updates marks positions by the difference in positionChange
void installEventFilter();
void setupWidget();
void restoreWidget();
friend class FakeVimHandler;
static int shift(int key) { return key + 32; }
static int control(int key) { return key + 256; }
void init();
EventResult handleKey(int key, int unmodified, const QString &text);
EventResult handleInsertMode(int key, int unmodified, const QString &text);
EventResult handleCommandMode(int key, int unmodified, const QString &text);
EventResult handleRegisterMode(int key, int unmodified, const QString &text);
EventResult handleMiniBufferModes(int key, int unmodified, const QString &text);
2009-01-06 11:43:49 +01:00
void finishMovement(const QString &text = QString());
2008-12-26 00:18:03 +01:00
void search(const QString &needle, bool forward);
2009-03-12 18:05:36 +01:00
void highlightMatches(const QString &needle);
2008-12-25 22:41:09 +01:00
int mvCount() const { return m_mvcount.isEmpty() ? 1 : m_mvcount.toInt(); }
int opCount() const { return m_opcount.isEmpty() ? 1 : m_opcount.toInt(); }
int count() const { return mvCount() * opCount(); }
int leftDist() const { return m_tc.position() - m_tc.block().position(); }
int rightDist() const { return m_tc.block().length() - leftDist() - 1; }
bool atEndOfLine() const
{ return m_tc.atBlockEnd() && m_tc.block().length() > 1; }
2008-12-19 16:20:39 +01:00
2009-07-03 11:22:18 +02:00
int lastPositionInDocument() const; // last valid pos in doc
int firstPositionInLine(int line) const; // 1 based line, 0 based pos
int lastPositionInLine(int line) const; // 1 based line, 0 based pos
int lineForPosition(int pos) const; // 1 based line, 0 based pos
2009-01-06 11:11:31 +01:00
// all zero-based counting
int cursorLineOnScreen() const;
int linesOnScreen() const;
int columnsOnScreen() const;
int cursorLineInDocument() const;
int cursorColumnInDocument() const;
2008-12-28 02:15:26 +01:00
int linesInDocument() const;
int firstVisibleLineInDocument() const;
2009-01-06 11:11:31 +01:00
void scrollToLineInDocument(int line);
2009-03-20 08:44:52 +01:00
void scrollUp(int count);
void scrollDown(int count) { scrollUp(-count); }
CursorPosition cursorPosition() const
{ return CursorPosition(position(), firstVisibleLineInDocument()); }
void setCursorPosition(const CursorPosition &p)
{ setPosition(p.position); scrollToLineInDocument(p.scrollLine); }
// helper functions for indenting
2009-01-16 14:11:44 +01:00
bool isElectricCharacter(QChar c) const
{ return c == '{' || c == '}' || c == '#'; }
2009-03-06 13:03:33 +01:00
void indentRegion(QChar lastTyped = QChar());
void shiftRegionLeft(int repeat = 1);
void shiftRegionRight(int repeat = 1);
2008-12-19 14:35:57 +01:00
void moveToFirstNonBlankOnLine();
void moveToTargetColumn();
void setTargetColumn() {
m_targetColumn = leftDist();
//qDebug() << "TARGET: " << m_targetColumn;
}
2008-12-26 00:18:03 +01:00
void moveToNextWord(bool simple);
void moveToMatchingParanthesis();
2008-12-26 00:18:03 +01:00
void moveToWordBoundary(bool simple, bool forward);
2009-01-16 14:11:44 +01:00
// to reduce line noise
2009-01-16 17:51:44 +01:00
void moveToEndOfDocument() { m_tc.movePosition(EndOfDocument, MoveAnchor); }
void moveToStartOfLine();
2009-04-08 16:05:24 +02:00
void moveToEndOfLine();
2009-07-03 11:22:18 +02:00
void moveBehindEndOfLine();
2009-04-08 16:05:24 +02:00
void moveUp(int n = 1) { moveDown(-n); }
void moveDown(int n = 1); // { m_tc.movePosition(Down, MoveAnchor, n); }
2009-01-16 17:51:44 +01:00
void moveRight(int n = 1) { m_tc.movePosition(Right, MoveAnchor, n); }
void moveLeft(int n = 1) { m_tc.movePosition(Left, MoveAnchor, n); }
2009-01-16 16:15:01 +01:00
void setAnchor() { m_anchor = m_tc.position(); }
void setAnchor(int position) { m_anchor = position; }
void setPosition(int position) { m_tc.setPosition(position, MoveAnchor); }
2009-01-16 16:15:01 +01:00
2008-12-26 00:18:03 +01:00
void handleFfTt(int key);
2009-04-08 16:05:24 +02:00
// helper function for handleExCommand. return 1 based line index.
2008-12-28 02:15:26 +01:00
int readLineCode(QString &cmd);
2009-01-16 16:15:01 +01:00
void selectRange(int beginLine, int endLine);
2008-12-28 02:15:26 +01:00
void enterInsertMode();
void enterCommandMode();
void enterExMode();
2009-01-08 17:40:27 +01:00
void showRedMessage(const QString &msg);
void showBlackMessage(const QString &msg);
void notImplementedYet();
void updateMiniBuffer();
void updateSelection();
QWidget *editor() const;
QChar characterAtCursor() const
{ return m_tc.document()->characterAt(m_tc.position()); }
2009-06-02 16:43:09 +02:00
void beginEditBlock() { UNDO_DEBUG("BEGIN EDIT BLOCK"); m_tc.beginEditBlock(); }
void endEditBlock() { UNDO_DEBUG("END EDIT BLOCK"); m_tc.endEditBlock(); }
void joinPreviousEditBlock() { UNDO_DEBUG("JOIN EDIT BLOCK"); m_tc.joinPreviousEditBlock(); }
// this asks the layer above (e.g. the fake vim plugin or the
// stand-alone test application to handle the command)
void passUnknownExCommand(const QString &cmd);
public:
QTextEdit *m_textedit;
QPlainTextEdit *m_plaintextedit;
bool m_wasReadOnly; // saves read-only state of document
FakeVimHandler *q;
Mode m_mode;
bool m_passing; // let the core see the next event
SubMode m_submode;
2008-12-26 00:18:03 +01:00
SubSubMode m_subsubmode;
int m_subsubdata;
QString m_input;
QTextCursor m_tc;
QTextCursor m_oldTc; // copy from last event to check for external changes
int m_anchor;
static QHash<int, Register> m_registers;
int m_register;
2008-12-25 22:41:09 +01:00
QString m_mvcount;
QString m_opcount;
MoveType m_movetype;
RangeMode m_rangemode;
bool m_fakeEnd;
bool isSearchMode() const
{ return m_mode == SearchForwardMode || m_mode == SearchBackwardMode; }
2008-12-27 13:39:34 +01:00
int m_gflag; // whether current command started with 'g'
QString m_commandBuffer;
QString m_currentFileName;
QString m_currentMessage;
bool m_lastSearchForward;
2008-12-27 12:24:50 +01:00
QString m_lastInsertion;
2008-12-26 17:01:21 +01:00
2009-01-16 16:15:01 +01:00
int anchor() const { return m_anchor; }
int position() const { return m_tc.position(); }
void removeSelectedText();
void removeText(const Range &range);
QString selectedText() const { return text(Range(position(), anchor())); }
QString text(const Range &range) const;
void yankSelectedText();
void yankText(const Range &range, int toregister = '"');
void pasteText(bool afterCursor);
// undo handling
void undo();
void redo();
QMap<int, int> m_undoCursorPosition; // revision -> position
2009-01-06 11:43:49 +01:00
// extra data for '.'
2009-04-08 16:05:24 +02:00
void replay(const QString &text, int count);
void setDotCommand(const QString &cmd) { m_dotCommand = cmd; }
void setDotCommand(const QString &cmd, int n) { m_dotCommand = cmd.arg(n); }
2009-01-06 11:43:49 +01:00
QString m_dotCommand;
2009-03-25 14:52:13 +01:00
bool m_inReplay; // true if we are executing a '.'
2009-01-06 11:43:49 +01:00
// extra data for ';'
QString m_semicolonCount;
int m_semicolonType; // 'f', 'F', 't', 'T'
int m_semicolonKey;
// history for '/'
2008-12-26 17:01:21 +01:00
QString lastSearchString() const;
static QStringList m_searchHistory;
2008-12-26 17:01:21 +01:00
int m_searchHistoryIndex;
// history for ':'
static QStringList m_commandHistory;
2008-12-26 17:01:21 +01:00
int m_commandHistoryIndex;
2008-12-27 21:28:22 +01:00
// visual line mode
void enterVisualMode(VisualMode visualMode);
void leaveVisualMode();
VisualMode m_visualMode;
// marks as lines
QHash<int, int> m_marks;
2009-03-20 09:26:34 +01:00
QString m_oldNeedle;
2008-12-27 21:28:22 +01:00
// vi style configuration
2009-03-30 12:40:08 +02:00
QVariant config(int code) const { return theFakeVimSetting(code)->value(); }
bool hasConfig(int code) const { return config(code).toBool(); }
bool hasConfig(int code, const char *value) const // FIXME
{ return config(code).toString().contains(value); }
2008-12-23 21:34:21 +01:00
// for restoring cursor position
2009-01-16 17:38:15 +01:00
int m_savedYankPosition;
int m_targetColumn;
int m_cursorWidth;
2009-04-03 11:54:29 +02:00
// auto-indent
void insertAutomaticIndentation(bool goingDown);
bool removeAutomaticIndentation(); // true if something removed
// number of autoindented characters
int m_justAutoIndented;
void handleStartOfLine();
2009-04-03 11:54:29 +02:00
void recordJump();
void recordNewUndo();
QVector<CursorPosition> m_jumpListUndo;
QVector<CursorPosition> m_jumpListRedo;
2009-03-12 18:05:36 +01:00
QList<QTextEdit::ExtraSelection> m_searchSelections;
};
QStringList FakeVimHandler::Private::m_searchHistory;
QStringList FakeVimHandler::Private::m_commandHistory;
QHash<int, Register> FakeVimHandler::Private::m_registers;
FakeVimHandler::Private::Private(FakeVimHandler *parent, QWidget *widget)
{
q = parent;
m_textedit = qobject_cast<QTextEdit *>(widget);
m_plaintextedit = qobject_cast<QPlainTextEdit *>(widget);
2009-04-08 16:05:24 +02:00
init();
}
2009-04-08 16:05:24 +02:00
void FakeVimHandler::Private::init()
{
m_mode = CommandMode;
2008-12-26 00:18:03 +01:00
m_submode = NoSubMode;
m_subsubmode = NoSubSubMode;
m_passing = false;
m_fakeEnd = false;
m_lastSearchForward = true;
m_register = '"';
2008-12-27 13:39:34 +01:00
m_gflag = false;
m_visualMode = NoVisualMode;
m_targetColumn = 0;
m_movetype = MoveInclusive;
2009-01-16 17:38:15 +01:00
m_anchor = 0;
m_savedYankPosition = 0;
m_cursorWidth = EDITOR(cursorWidth());
2009-03-25 14:52:13 +01:00
m_inReplay = false;
2009-04-03 11:54:29 +02:00
m_justAutoIndented = 0;
m_rangemode = RangeCharMode;
}
bool FakeVimHandler::Private::wantsOverride(QKeyEvent *ev)
{
const int key = ev->key();
const int mods = ev->modifiers();
KEY_DEBUG("SHORTCUT OVERRIDE" << key << " PASSING: " << m_passing);
if (key == Key_Escape) {
// Not sure this feels good. People often hit Esc several times
if (m_visualMode == NoVisualMode && m_mode == CommandMode)
return false;
return true;
}
// We are interested in overriding most Ctrl key combinations
if (mods == Qt::ControlModifier && key >= Key_A && key <= Key_Z && key != Key_K) {
2009-10-16 11:30:46 +02:00
// Ctrl-K is special as it is the Core's default notion of Locator
if (m_passing) {
KEY_DEBUG(" PASSING CTRL KEY");
// We get called twice on the same key
//m_passing = false;
return false;
}
KEY_DEBUG(" NOT PASSING CTRL KEY");
//updateMiniBuffer();
return true;
}
// Let other shortcuts trigger
return false;
}
EventResult FakeVimHandler::Private::handleEvent(QKeyEvent *ev)
{
int key = ev->key();
const int um = key; // keep unmodified key around
const int mods = ev->modifiers();
if (key == Key_Shift || key == Key_Alt || key == Key_Control
|| key == Key_Alt || key == Key_AltGr || key == Key_Meta)
{
KEY_DEBUG("PLAIN MODIFIER");
return EventUnhandled;
}
if (m_passing) {
KEY_DEBUG("PASSING PLAIN KEY..." << ev->key() << ev->text());
//if (key == ',') { // use ',,' to leave, too.
// qDebug() << "FINISHED...";
// return EventHandled;
//}
m_passing = false;
updateMiniBuffer();
KEY_DEBUG(" PASS TO CORE");
return EventPassedToCore;
}
// Fake "End of line"
m_tc = EDITOR(textCursor());
if (m_tc.position() != m_oldTc.position())
setTargetColumn();
m_tc.setVisualNavigation(true);
2009-10-16 11:30:46 +02:00
2008-12-27 22:50:58 +01:00
if (m_fakeEnd)
2009-01-16 17:38:15 +01:00
moveRight();
if ((mods & Qt::ControlModifier) != 0) {
key += 256;
2008-12-24 16:20:31 +01:00
key += 32; // make it lower case
} else if (key >= Key_A && key <= Key_Z && (mods & Qt::ShiftModifier) == 0) {
2008-12-24 16:20:31 +01:00
key += 32;
}
2009-06-02 16:43:09 +02:00
//if (m_mode == InsertMode)
// joinPreviousEditBlock();
//else
// beginEditBlock();
EventResult result = handleKey(key, um, ev->text());
2009-06-02 16:43:09 +02:00
//endEditBlock();
// We fake vi-style end-of-line behaviour
m_fakeEnd = (atEndOfLine() && m_mode == CommandMode
&& m_visualMode != VisualBlockMode);
2008-12-27 22:50:58 +01:00
if (m_fakeEnd)
2009-01-16 17:38:15 +01:00
moveLeft();
m_oldTc = m_tc;
EDITOR(setTextCursor(m_tc));
return result;
}
void FakeVimHandler::Private::installEventFilter()
{
EDITOR(installEventFilter(q));
}
void FakeVimHandler::Private::setupWidget()
{
enterCommandMode();
//EDITOR(setCursorWidth(QFontMetrics(ed->font()).width(QChar('x')));
if (m_textedit) {
m_textedit->setLineWrapMode(QTextEdit::NoWrap);
} else if (m_plaintextedit) {
m_plaintextedit->setLineWrapMode(QPlainTextEdit::NoWrap);
}
m_wasReadOnly = EDITOR(isReadOnly());
//EDITOR(setReadOnly(true));
QTextCursor tc = EDITOR(textCursor());
if (tc.hasSelection()) {
int pos = tc.position();
int anc = tc.anchor();
m_marks['<'] = anc;
m_marks['>'] = pos;
m_anchor = anc;
m_visualMode = VisualCharMode;
tc.clearSelection();
EDITOR(setTextCursor(tc));
m_tc = tc; // needed in updateSelection
updateSelection();
}
//showBlackMessage("vi emulation mode. Type :q to leave. Use , Ctrl-R to trigger run.");
updateMiniBuffer();
}
void FakeVimHandler::Private::restoreWidget()
{
//showBlackMessage(QString());
//updateMiniBuffer();
//EDITOR(removeEventFilter(q));
EDITOR(setReadOnly(m_wasReadOnly));
EDITOR(setCursorWidth(m_cursorWidth));
EDITOR(setOverwriteMode(false));
if (m_visualMode == VisualLineMode) {
m_tc = EDITOR(textCursor());
int beginLine = lineForPosition(m_marks['<']);
int endLine = lineForPosition(m_marks['>']);
m_tc.setPosition(firstPositionInLine(beginLine), MoveAnchor);
m_tc.setPosition(lastPositionInLine(endLine), KeepAnchor);
EDITOR(setTextCursor(m_tc));
} else if (m_visualMode == VisualCharMode) {
m_tc = EDITOR(textCursor());
m_tc.setPosition(m_marks['<'], MoveAnchor);
m_tc.setPosition(m_marks['>'], KeepAnchor);
EDITOR(setTextCursor(m_tc));
}
m_visualMode = NoVisualMode;
updateSelection();
}
EventResult FakeVimHandler::Private::handleKey(int key, int unmodified,
const QString &text)
{
m_undoCursorPosition[m_tc.document()->availableUndoSteps()] = m_tc.position();
//qDebug() << "KEY: " << key << text << "POS: " << m_tc.position();
if (m_mode == InsertMode)
return handleInsertMode(key, unmodified, text);
if (m_mode == CommandMode)
return handleCommandMode(key, unmodified, text);
if (m_mode == ExMode || m_mode == SearchForwardMode
|| m_mode == SearchBackwardMode)
return handleMiniBufferModes(key, unmodified, text);
return EventUnhandled;
}
2009-04-08 16:05:24 +02:00
void FakeVimHandler::Private::moveDown(int n)
{
2009-04-09 13:48:59 +02:00
#if 0
// does not work for "hidden" documents like in the autotests
m_tc.movePosition(Down, MoveAnchor, n);
#else
2009-04-09 15:44:51 +02:00
const int col = m_tc.position() - m_tc.block().position();
const int lastLine = m_tc.document()->lastBlock().blockNumber();
const int targetLine = qMax(0, qMin(lastLine, m_tc.block().blockNumber() + n));
const QTextBlock &block = m_tc.document()->findBlockByNumber(targetLine);
2009-04-09 15:44:51 +02:00
const int pos = block.position();
setPosition(pos + qMin(block.length() - 1, col));
moveToTargetColumn();
2009-04-09 13:48:59 +02:00
#endif
2009-04-08 16:05:24 +02:00
}
void FakeVimHandler::Private::moveToEndOfLine()
{
2009-04-09 13:48:59 +02:00
#if 0
// does not work for "hidden" documents like in the autotests
m_tc.movePosition(EndOfLine, MoveAnchor);
#else
2009-04-08 16:05:24 +02:00
const QTextBlock &block = m_tc.block();
setPosition(block.position() + block.length() - 1);
2009-04-09 13:48:59 +02:00
#endif
2009-04-08 16:05:24 +02:00
}
2009-07-03 11:22:18 +02:00
void FakeVimHandler::Private::moveBehindEndOfLine()
{
const QTextBlock &block = m_tc.block();
int pos = qMin(block.position() + block.length(), lastPositionInDocument());
setPosition(pos);
}
void FakeVimHandler::Private::moveToStartOfLine()
{
#if 0
// does not work for "hidden" documents like in the autotests
m_tc.movePosition(StartOfLine, MoveAnchor);
#else
const QTextBlock &block = m_tc.block();
setPosition(block.position());
#endif
}
2009-01-06 11:43:49 +01:00
void FakeVimHandler::Private::finishMovement(const QString &dotCommand)
{
//qDebug() << "ANCHOR: " << position() << anchor();
2009-01-08 17:21:51 +01:00
if (m_submode == FilterSubMode) {
2009-01-16 16:15:01 +01:00
int beginLine = lineForPosition(anchor());
int endLine = lineForPosition(position());
setPosition(qMin(anchor(), position()));
enterExMode();
m_currentMessage.clear();
2009-01-08 17:21:51 +01:00
m_commandBuffer = QString(".,+%1!").arg(qAbs(endLine - beginLine));
m_commandHistory.append(QString());
m_commandHistoryIndex = m_commandHistory.size() - 1;
updateMiniBuffer();
return;
}
if (m_visualMode != NoVisualMode)
m_marks['>'] = m_tc.position();
if (m_submode == ChangeSubMode) {
if (m_movetype == MoveInclusive)
moveRight(); // correction
2009-02-17 00:48:15 +01:00
if (anchor() >= position())
m_anchor++;
2009-01-06 11:43:49 +01:00
if (!dotCommand.isEmpty())
setDotCommand("c" + dotCommand);
//QString text = removeSelectedText();
//qDebug() << "CHANGING TO INSERT MODE" << text;
//m_registers[m_register] = text;
yankSelectedText();
removeSelectedText();
enterInsertMode();
m_submode = NoSubMode;
} else if (m_submode == DeleteSubMode) {
if (m_rangemode == RangeCharMode) {
if (m_movetype == MoveInclusive)
moveRight(); // correction
if (anchor() >= position())
m_anchor++;
}
2009-01-06 11:43:49 +01:00
if (!dotCommand.isEmpty())
setDotCommand("d" + dotCommand);
yankSelectedText();
removeSelectedText();
m_submode = NoSubMode;
if (atEndOfLine())
2009-01-16 17:38:15 +01:00
moveLeft();
else
setTargetColumn();
2008-12-23 21:34:21 +01:00
} else if (m_submode == YankSubMode) {
yankSelectedText();
2008-12-23 21:34:21 +01:00
m_submode = NoSubMode;
if (m_register != '"') {
setPosition(m_marks[m_register]);
moveToStartOfLine();
} else {
setPosition(m_savedYankPosition);
}
} else if (m_submode == ReplaceSubMode) {
m_submode = NoSubMode;
} else if (m_submode == IndentSubMode) {
recordJump();
2009-03-06 13:03:33 +01:00
indentRegion();
m_submode = NoSubMode;
updateMiniBuffer();
} else if (m_submode == ShiftRightSubMode) {
recordJump();
shiftRegionRight(1);
m_submode = NoSubMode;
updateMiniBuffer();
} else if (m_submode == ShiftLeftSubMode) {
recordJump();
shiftRegionLeft(1);
m_submode = NoSubMode;
updateMiniBuffer();
}
m_movetype = MoveInclusive;
2008-12-25 22:41:09 +01:00
m_mvcount.clear();
m_opcount.clear();
2008-12-27 13:39:34 +01:00
m_gflag = false;
m_register = '"';
m_tc.clearSelection();
m_rangemode = RangeCharMode;
updateSelection();
2008-12-27 21:01:05 +01:00
updateMiniBuffer();
}
void FakeVimHandler::Private::updateSelection()
{
2009-03-12 18:05:36 +01:00
QList<QTextEdit::ExtraSelection> selections = m_searchSelections;
if (m_visualMode != NoVisualMode) {
QTextEdit::ExtraSelection sel;
sel.cursor = m_tc;
sel.format = m_tc.blockCharFormat();
#if 0
sel.format.setFontWeight(QFont::Bold);
sel.format.setFontUnderline(true);
#else
2009-01-08 17:40:27 +01:00
sel.format.setForeground(Qt::white);
sel.format.setBackground(Qt::black);
#endif
int cursorPos = m_tc.position();
int anchorPos = m_marks['<'];
//qDebug() << "POS: " << cursorPos << " ANCHOR: " << anchorPos;
if (m_visualMode == VisualCharMode) {
sel.cursor.setPosition(qMin(cursorPos, anchorPos), MoveAnchor);
sel.cursor.setPosition(qMax(cursorPos, anchorPos) + 1, KeepAnchor);
selections.append(sel);
} else if (m_visualMode == VisualLineMode) {
sel.cursor.setPosition(qMin(cursorPos, anchorPos), MoveAnchor);
sel.cursor.movePosition(StartOfLine, MoveAnchor);
sel.cursor.setPosition(qMax(cursorPos, anchorPos), KeepAnchor);
sel.cursor.movePosition(EndOfLine, KeepAnchor);
selections.append(sel);
} else if (m_visualMode == VisualBlockMode) {
QTextCursor tc = m_tc;
tc.setPosition(anchorPos);
int anchorColumn = tc.columnNumber();
int cursorColumn = m_tc.columnNumber();
int anchorRow = tc.blockNumber();
int cursorRow = m_tc.blockNumber();
int startColumn = qMin(anchorColumn, cursorColumn);
int endColumn = qMax(anchorColumn, cursorColumn);
int diffRow = cursorRow - anchorRow;
if (anchorRow > cursorRow) {
tc.setPosition(cursorPos);
diffRow = -diffRow;
}
tc.movePosition(StartOfLine, MoveAnchor);
for (int i = 0; i <= diffRow; ++i) {
if (startColumn < tc.block().length() - 1) {
int last = qMin(tc.block().length(), endColumn + 1);
int len = last - startColumn;
sel.cursor = tc;
sel.cursor.movePosition(Right, MoveAnchor, startColumn);
sel.cursor.movePosition(Right, KeepAnchor, len);
selections.append(sel);
}
tc.movePosition(Down, MoveAnchor, 1);
}
}
}
//qDebug() << "SELECTION: " << selections;
emit q->selectionChanged(selections);
}
2008-12-27 21:01:05 +01:00
void FakeVimHandler::Private::updateMiniBuffer()
{
2008-12-27 21:01:05 +01:00
QString msg;
if (m_passing) {
msg = "-- PASSING -- ";
} else if (!m_currentMessage.isEmpty()) {
msg = m_currentMessage;
2009-01-08 17:21:51 +01:00
} else if (m_mode == CommandMode && m_visualMode != NoVisualMode) {
if (m_visualMode == VisualCharMode) {
msg = "-- VISUAL --";
} else if (m_visualMode == VisualLineMode) {
msg = "-- VISUAL LINE --";
} else if (m_visualMode == VisualBlockMode) {
msg = "-- VISUAL BLOCK --";
}
} else if (m_mode == InsertMode) {
2009-05-04 09:35:46 +02:00
if (m_submode == ReplaceSubMode)
msg = "-- REPLACE --";
else
msg = "-- INSERT --";
} else {
if (m_mode == SearchForwardMode)
msg += '/';
else if (m_mode == SearchBackwardMode)
msg += '?';
else if (m_mode == ExMode)
msg += ':';
2009-01-06 11:51:03 +01:00
foreach (QChar c, m_commandBuffer) {
if (c.unicode() < 32) {
msg += '^';
msg += QChar(c.unicode() + 64);
} else {
msg += c;
}
2008-12-27 22:41:47 +01:00
}
2009-01-08 17:21:51 +01:00
if (!msg.isEmpty() && m_mode != CommandMode)
2009-01-08 17:40:27 +01:00
msg += QChar(10073); // '|'; // FIXME: Use a real "cursor"
2008-12-27 22:41:47 +01:00
}
2009-01-07 18:05:45 +01:00
emit q->commandBufferChanged(msg);
int linesInDoc = linesInDocument();
int l = cursorLineInDocument();
QString status;
2009-10-07 09:25:19 +02:00
const QString pos = QString::fromLatin1("%1,%2").arg(l + 1).arg(cursorColumnInDocument() + 1);
2008-12-27 21:01:05 +01:00
// FIXME: physical "-" logical
2009-01-06 11:51:03 +01:00
if (linesInDoc != 0) {
2009-10-16 11:30:46 +02:00
status = FakeVimHandler::tr("%1%2%").arg(pos, -10).arg(l * 100 / linesInDoc, 4);
2009-01-06 11:51:03 +01:00
} else {
2009-10-16 11:30:46 +02:00
status = FakeVimHandler::tr("%1All").arg(pos, -10);
2009-01-06 11:51:03 +01:00
}
2009-01-07 18:05:45 +01:00
emit q->statusDataChanged(status);
}
2009-01-08 17:40:27 +01:00
void FakeVimHandler::Private::showRedMessage(const QString &msg)
{
//qDebug() << "MSG: " << msg;
m_currentMessage = msg;
2008-12-27 21:01:05 +01:00
updateMiniBuffer();
}
2009-01-08 17:40:27 +01:00
void FakeVimHandler::Private::showBlackMessage(const QString &msg)
{
//qDebug() << "MSG: " << msg;
m_commandBuffer = msg;
updateMiniBuffer();
}
void FakeVimHandler::Private::notImplementedYet()
{
qDebug() << "Not implemented in FakeVim";
2009-10-07 09:25:19 +02:00
showRedMessage(FakeVimHandler::tr("Not implemented in FakeVim"));
updateMiniBuffer();
}
EventResult FakeVimHandler::Private::handleCommandMode(int key, int unmodified,
const QString &text)
{
EventResult handled = EventHandled;
2009-04-03 16:33:28 +02:00
if (m_submode == WindowSubMode) {
emit q->windowCommandRequested(key);
m_submode = NoSubMode;
} else if (m_submode == RegisterSubMode) {
m_register = key;
m_submode = NoSubMode;
m_rangemode = RangeLineMode;
} else if (m_submode == ChangeSubMode && key == 'c') { // tested
moveDown(count() - 1);
moveToEndOfLine();
moveLeft();
2009-01-16 16:15:01 +01:00
setAnchor();
moveToStartOfLine();
setTargetColumn();
moveUp(count() - 1);
m_movetype = MoveLineWise;
m_lastInsertion.clear();
setDotCommand("%1cc", count());
finishMovement();
} else if (m_submode == DeleteSubMode && key == 'd') { // tested
m_movetype = MoveLineWise;
int endPos = firstPositionInLine(lineForPosition(position()) + count() - 1);
Range range(position(), endPos, RangeLineMode);
yankText(range);
removeText(range);
setDotCommand("%1dd", count());
m_submode = NoSubMode;
moveToFirstNonBlankOnLine();
2009-10-16 11:30:46 +02:00
setTargetColumn();
finishMovement();
} else if (m_submode == ShiftLeftSubMode && key == '<') {
setAnchor();
moveDown(count() - 1);
m_movetype = MoveLineWise;
setDotCommand("%1<<", count());
finishMovement();
} else if (m_submode == ShiftRightSubMode && key == '>') {
setAnchor();
moveDown(count() - 1);
m_movetype = MoveLineWise;
setDotCommand("%1>>", count());
finishMovement();
} else if (m_submode == IndentSubMode && key == '=') {
2009-03-06 13:03:33 +01:00
setAnchor();
moveDown(count() - 1);
m_movetype = MoveLineWise;
2009-05-05 08:46:24 +02:00
setDotCommand("%1==", count());
finishMovement();
2008-12-19 16:20:39 +01:00
} else if (m_submode == ZSubMode) {
2009-01-27 12:44:42 +01:00
//qDebug() << "Z_MODE " << cursorLineInDocument() << linesOnScreen();
if (key == Key_Return || key == 't') { // cursor line to top of window
if (!m_mvcount.isEmpty())
setPosition(firstPositionInLine(count()));
2009-03-20 08:44:52 +01:00
scrollUp(- cursorLineOnScreen());
2009-01-27 12:44:42 +01:00
if (key == Key_Return)
moveToFirstNonBlankOnLine();
2008-12-19 16:20:39 +01:00
finishMovement();
2009-01-27 12:44:42 +01:00
} else if (key == '.' || key == 'z') { // cursor line to center of window
if (!m_mvcount.isEmpty())
setPosition(firstPositionInLine(count()));
2009-03-20 08:44:52 +01:00
scrollUp(linesOnScreen() / 2 - cursorLineOnScreen());
2009-01-27 12:44:42 +01:00
if (key == '.')
moveToFirstNonBlankOnLine();
2009-01-27 12:11:08 +01:00
finishMovement();
2009-01-27 12:44:42 +01:00
} else if (key == '-' || key == 'b') { // cursor line to bottom of window
if (!m_mvcount.isEmpty())
setPosition(firstPositionInLine(count()));
2009-03-20 08:44:52 +01:00
scrollUp(linesOnScreen() - cursorLineOnScreen());
2009-01-27 12:44:42 +01:00
if (key == '-')
moveToFirstNonBlankOnLine();
2009-01-27 12:29:14 +01:00
finishMovement();
2008-12-25 13:20:09 +01:00
} else {
2009-01-16 09:56:08 +01:00
qDebug() << "IGNORED Z_MODE " << key << text;
2008-12-19 16:20:39 +01:00
}
m_submode = NoSubMode;
} else if (m_submode == CapitalZSubMode) {
// Recognize ZZ and ZQ as aliases for ":x" and ":q!".
m_submode = NoSubMode;
if (key == 'Z')
handleCommand("x");
else if (key == 'Q')
handleCommand("q!");
2008-12-26 00:18:03 +01:00
} else if (m_subsubmode == FtSubSubMode) {
m_semicolonType = m_subsubdata;
m_semicolonKey = key;
2008-12-26 00:18:03 +01:00
handleFfTt(key);
m_subsubmode = NoSubSubMode;
finishMovement(QString("%1%2%3")
.arg(count())
.arg(QChar(m_semicolonType))
.arg(QChar(m_semicolonKey)));
2009-01-22 15:08:50 +01:00
} else if (m_submode == ReplaceSubMode) {
if (count() <= (rightDist() + atEndOfLine()) && text.size() == 1
&& (text.at(0).isPrint() || text.at(0).isSpace())) {
if (atEndOfLine())
moveLeft();
setAnchor();
moveRight(count());
removeSelectedText();
m_tc.insertText(QString(count(), text.at(0)));
m_movetype = MoveExclusive;
setDotCommand("%1r" + text, count());
}
setTargetColumn();
m_submode = NoSubMode;
finishMovement();
} else if (m_subsubmode == MarkSubSubMode) {
m_marks[key] = m_tc.position();
m_subsubmode = NoSubSubMode;
} else if (m_subsubmode == BackTickSubSubMode
|| m_subsubmode == TickSubSubMode) {
if (m_marks.contains(key)) {
setPosition(m_marks[key]);
if (m_subsubmode == TickSubSubMode)
moveToFirstNonBlankOnLine();
finishMovement();
} else {
2009-10-07 09:25:19 +02:00
showRedMessage(msgE20MarkNotSet(text));
}
m_subsubmode = NoSubSubMode;
} else if (key >= '0' && key <= '9') {
2008-12-25 22:41:09 +01:00
if (key == '0' && m_mvcount.isEmpty()) {
moveToStartOfLine();
setTargetColumn();
finishMovement();
} else {
2008-12-25 22:41:09 +01:00
m_mvcount.append(QChar(key));
}
} else if (key == '^') {
moveToFirstNonBlankOnLine();
finishMovement();
} else if (0 && key == ',') {
// FIXME: fakevim uses ',' by itself, so it is incompatible
m_subsubmode = FtSubSubMode;
// HACK: toggle 'f' <-> 'F', 't' <-> 'T'
m_subsubdata = m_semicolonType ^ 32;
handleFfTt(m_semicolonKey);
m_subsubmode = NoSubSubMode;
finishMovement();
} else if (key == ';') {
m_subsubmode = FtSubSubMode;
m_subsubdata = m_semicolonType;
handleFfTt(m_semicolonKey);
m_subsubmode = NoSubSubMode;
finishMovement();
} else if (key == ':') {
enterExMode();
m_currentMessage.clear();
2009-01-06 11:50:30 +01:00
m_commandBuffer.clear();
if (m_visualMode != NoVisualMode)
m_commandBuffer = "'<,'>";
m_commandHistory.append(QString());
m_commandHistoryIndex = m_commandHistory.size() - 1;
updateMiniBuffer();
} else if (key == '/' || key == '?') {
if (hasConfig(ConfigIncSearch)) {
// re-use the core dialog.
emit q->findRequested(key == '?');
} else {
// FIXME: make core find dialog sufficiently flexible to
// produce the "default vi" behaviour too. For now, roll our own.
enterExMode(); // to get the cursor disabled
m_currentMessage.clear();
m_mode = (key == '/') ? SearchForwardMode : SearchBackwardMode;
m_commandBuffer.clear();
m_searchHistory.append(QString());
m_searchHistoryIndex = m_searchHistory.size() - 1;
updateMiniBuffer();
}
} else if (key == '`') {
m_subsubmode = BackTickSubSubMode;
2009-01-16 09:56:08 +01:00
} else if (key == '#' || key == '*') {
// FIXME: That's not proper vim behaviour
m_tc.select(QTextCursor::WordUnderCursor);
QString needle = "\\<" + m_tc.selection().toPlainText() + "\\>";
m_searchHistory.append(needle);
m_lastSearchForward = (key == '*');
updateMiniBuffer();
search(needle, m_lastSearchForward);
recordJump();
} else if (key == '\'') {
m_subsubmode = TickSubSubMode;
} else if (key == '|') {
2009-01-16 16:15:01 +01:00
moveToStartOfLine();
moveRight(qMin(count(), rightDist()) - 1);
setTargetColumn();
finishMovement();
2009-01-08 17:21:51 +01:00
} else if (key == '!' && m_visualMode == NoVisualMode) {
m_submode = FilterSubMode;
} else if (key == '!' && m_visualMode != NoVisualMode) {
enterExMode();
m_currentMessage.clear();
2009-01-08 17:21:51 +01:00
m_commandBuffer = "'<,'>!";
m_commandHistory.append(QString());
m_commandHistoryIndex = m_commandHistory.size() - 1;
updateMiniBuffer();
} else if (key == '"') {
m_submode = RegisterSubMode;
} else if (unmodified == Key_Return) {
2009-01-16 16:15:01 +01:00
moveToStartOfLine();
moveDown();
moveToFirstNonBlankOnLine();
finishMovement();
} else if (key == '-') {
moveToStartOfLine();
moveUp();
moveToFirstNonBlankOnLine();
finishMovement();
} else if (key == Key_Home) {
2009-01-16 16:15:01 +01:00
moveToStartOfLine();
setTargetColumn();
finishMovement();
} else if (key == '$' || key == Key_End) {
int submode = m_submode;
2009-01-16 16:15:01 +01:00
moveToEndOfLine();
m_movetype = MoveExclusive;
setTargetColumn();
if (submode == NoSubMode)
m_targetColumn = -1;
finishMovement("$");
} else if (key == ',') {
// FIXME: use some other mechanism
//m_passing = true;
m_passing = !m_passing;
updateMiniBuffer();
2009-01-06 11:43:49 +01:00
} else if (key == '.') {
2009-07-03 11:22:18 +02:00
//qDebug() << "REPEATING" << quoteUnprintable(m_dotCommand);
QString savedCommand = m_dotCommand;
m_dotCommand.clear();
2009-04-08 16:05:24 +02:00
replay(savedCommand, count());
2009-03-05 14:08:42 +01:00
enterCommandMode();
m_dotCommand = savedCommand;
} else if (key == '<' && m_visualMode == NoVisualMode) {
m_submode = ShiftLeftSubMode;
} else if (key == '<' && m_visualMode != NoVisualMode) {
shiftRegionLeft(1);
leaveVisualMode();
} else if (key == '>' && m_visualMode == NoVisualMode) {
m_submode = ShiftRightSubMode;
} else if (key == '>' && m_visualMode != NoVisualMode) {
shiftRegionRight(1);
leaveVisualMode();
2009-03-06 13:03:33 +01:00
} else if (key == '=' && m_visualMode == NoVisualMode) {
m_submode = IndentSubMode;
2009-03-06 13:03:33 +01:00
} else if (key == '=' && m_visualMode != NoVisualMode) {
indentRegion();
leaveVisualMode();
} else if (key == '%') {
m_movetype = MoveExclusive;
moveToMatchingParanthesis();
finishMovement();
2008-12-27 21:51:06 +01:00
} else if (key == 'a') {
enterInsertMode();
2008-12-27 21:51:06 +01:00
m_lastInsertion.clear();
if (!atEndOfLine())
moveRight();
updateMiniBuffer();
} else if (key == 'A') {
enterInsertMode();
2009-01-16 16:15:01 +01:00
moveToEndOfLine();
setDotCommand("A");
2008-12-27 21:51:06 +01:00
m_lastInsertion.clear();
} else if (key == control('a')) {
// FIXME: eat it to prevent the global "select all" shortcut to trigger
2008-12-25 19:50:14 +01:00
} else if (key == 'b') {
m_movetype = MoveExclusive;
2008-12-26 00:18:03 +01:00
moveToWordBoundary(false, false);
2008-12-25 19:50:14 +01:00
finishMovement();
} else if (key == 'B') {
m_movetype = MoveExclusive;
2008-12-26 00:18:03 +01:00
moveToWordBoundary(true, false);
2008-12-25 19:50:14 +01:00
finishMovement();
} else if (key == 'c' && m_visualMode == NoVisualMode) {
2009-01-16 16:15:01 +01:00
setAnchor();
m_submode = ChangeSubMode;
} else if (key == 'c' && m_visualMode == VisualCharMode) {
leaveVisualMode();
m_submode = ChangeSubMode;
finishMovement();
} else if (key == 'C') {
2009-01-16 16:15:01 +01:00
setAnchor();
moveToEndOfLine();
yankSelectedText();
removeSelectedText();
enterInsertMode();
2009-06-11 17:09:05 +02:00
setDotCommand("C");
finishMovement();
} else if (key == control('c')) {
showBlackMessage("Type Alt-v,Alt-v to quit FakeVim mode");
} else if (key == 'd' && m_visualMode == NoVisualMode) {
if (m_rangemode == RangeLineMode) {
m_savedYankPosition = m_tc.position();
moveToEndOfLine();
setAnchor();
setPosition(m_savedYankPosition);
} else {
if (atEndOfLine())
moveLeft();
setAnchor();
}
2009-01-06 11:43:49 +01:00
m_opcount = m_mvcount;
m_mvcount.clear();
m_submode = DeleteSubMode;
} else if ((key == 'd' || key == 'x') && m_visualMode == VisualCharMode) {
leaveVisualMode();
m_submode = DeleteSubMode;
finishMovement();
} else if ((key == 'd' || key == 'x') && m_visualMode == VisualLineMode) {
leaveVisualMode();
m_rangemode = RangeLineMode;
yankSelectedText();
removeSelectedText();
} else if ((key == 'd' || key == 'x') && m_visualMode == VisualBlockMode) {
leaveVisualMode();
m_rangemode = RangeBlockMode;
yankSelectedText();
removeSelectedText();
setPosition(qMin(position(), anchor()));
} else if (key == 'D') {
2009-01-16 16:15:01 +01:00
setAnchor();
m_submode = DeleteSubMode;
2009-01-16 16:15:01 +01:00
moveDown(qMax(count() - 1, 0));
m_movetype = MoveExclusive;
2009-02-16 02:13:33 +01:00
moveToEndOfLine();
2009-06-12 11:43:51 +02:00
setDotCommand("D");
finishMovement();
} else if (key == control('d')) {
int sline = cursorLineOnScreen();
// FIXME: this should use the "scroll" option, and "count"
moveDown(linesOnScreen() / 2);
handleStartOfLine();
scrollToLineInDocument(cursorLineInDocument() - sline);
finishMovement();
} else if (key == 'e') { // tested
m_movetype = MoveInclusive;
2008-12-26 00:18:03 +01:00
moveToWordBoundary(false, true);
finishMovement("e");
2008-12-25 19:50:14 +01:00
} else if (key == 'E') {
m_movetype = MoveInclusive;
2008-12-26 00:18:03 +01:00
moveToWordBoundary(true, true);
2008-12-25 19:50:14 +01:00
finishMovement();
2009-03-20 08:44:52 +01:00
} else if (key == control('e')) {
// FIXME: this should use the "scroll" option, and "count"
if (cursorLineOnScreen() == 0)
moveDown(1);
scrollDown(1);
finishMovement();
} else if (key == 'f') {
2008-12-26 00:18:03 +01:00
m_subsubmode = FtSubSubMode;
m_movetype = MoveInclusive;
m_subsubdata = key;
} else if (key == 'F') {
m_subsubmode = FtSubSubMode;
m_movetype = MoveExclusive;
2008-12-26 00:18:03 +01:00
m_subsubdata = key;
2008-12-27 13:39:34 +01:00
} else if (key == 'g') {
if (m_gflag) {
m_gflag = false;
m_tc.setPosition(firstPositionInLine(1), KeepAnchor);
handleStartOfLine();
finishMovement();
} else {
m_gflag = true;
}
2008-12-27 21:28:22 +01:00
} else if (key == 'G') {
int n = m_mvcount.isEmpty() ? linesInDocument() : count();
m_tc.setPosition(firstPositionInLine(n), KeepAnchor);
handleStartOfLine();
2008-12-27 21:28:22 +01:00
finishMovement();
2009-01-16 16:15:01 +01:00
} else if (key == 'h' || key == Key_Left
|| key == Key_Backspace || key == control('h')) {
int n = qMin(count(), leftDist());
if (m_fakeEnd && m_tc.block().length() > 1)
++n;
2009-01-16 16:15:01 +01:00
moveLeft(n);
setTargetColumn();
2009-02-17 00:50:05 +01:00
finishMovement("h");
2008-12-19 14:35:57 +01:00
} else if (key == 'H') {
m_tc = EDITOR(cursorForPosition(QPoint(0, 0)));
2009-01-16 16:15:01 +01:00
moveDown(qMax(count() - 1, 0));
handleStartOfLine();
2008-12-19 14:35:57 +01:00
finishMovement();
2009-05-04 09:35:46 +02:00
} else if (key == 'i' || key == Key_Insert) {
setDotCommand("i"); // setDotCommand("%1i", count());
enterInsertMode();
updateMiniBuffer();
if (atEndOfLine())
2009-01-16 17:38:15 +01:00
moveLeft();
2008-12-28 02:44:43 +01:00
} else if (key == 'I') {
setDotCommand("I"); // setDotCommand("%1I", count());
enterInsertMode();
2008-12-28 02:49:14 +01:00
if (m_gflag)
2009-01-16 16:15:01 +01:00
moveToStartOfLine();
2008-12-28 02:49:14 +01:00
else
moveToFirstNonBlankOnLine();
m_tc.clearSelection();
} else if (key == control('i')) {
if (!m_jumpListRedo.isEmpty()) {
m_jumpListUndo.append(cursorPosition());
setCursorPosition(m_jumpListRedo.last());
m_jumpListRedo.pop_back();
}
} else if (key == 'j' || key == Key_Down) {
2009-01-16 13:10:42 +01:00
if (m_submode == NoSubMode || m_submode == ZSubMode
|| m_submode == CapitalZSubMode || m_submode == RegisterSubMode) {
2009-01-16 16:15:01 +01:00
moveDown(count());
} else {
m_movetype = MoveLineWise;
2009-01-16 16:15:01 +01:00
moveToStartOfLine();
setAnchor();
2009-01-16 16:15:01 +01:00
moveDown(count() + 1);
}
2009-02-17 00:50:05 +01:00
finishMovement("j");
2008-12-27 13:39:34 +01:00
} else if (key == 'J') {
if (m_submode == NoSubMode) {
for (int i = qMax(count(), 2) - 1; --i >= 0; ) {
2009-01-16 16:15:01 +01:00
moveToEndOfLine();
setAnchor();
moveRight();
while (characterAtCursor() == ' ')
moveRight();
removeSelectedText();
2008-12-27 13:50:52 +01:00
if (!m_gflag)
m_tc.insertText(" ");
2008-12-27 13:39:34 +01:00
}
2008-12-27 13:50:52 +01:00
if (!m_gflag)
2009-01-16 16:15:01 +01:00
moveLeft();
2008-12-27 13:39:34 +01:00
}
} else if (key == 'k' || key == Key_Up) {
2009-01-16 16:15:01 +01:00
if (m_submode == NoSubMode || m_submode == ZSubMode
|| m_submode == CapitalZSubMode || m_submode == RegisterSubMode) {
2009-01-16 16:15:01 +01:00
moveUp(count());
} else {
m_movetype = MoveLineWise;
2009-01-16 16:15:01 +01:00
moveToStartOfLine();
moveDown();
setAnchor();
2009-01-16 16:15:01 +01:00
moveUp(count() + 1);
}
2009-02-17 00:50:05 +01:00
finishMovement("k");
} else if (key == 'l' || key == Key_Right || key == ' ') {
m_movetype = MoveExclusive;
2009-01-16 16:15:01 +01:00
moveRight(qMin(count(), rightDist()));
setTargetColumn();
2009-02-17 00:50:05 +01:00
finishMovement("l");
2008-12-19 14:43:14 +01:00
} else if (key == 'L') {
2008-12-27 22:50:58 +01:00
m_tc = EDITOR(cursorForPosition(QPoint(0, EDITOR(height()))));
2009-01-16 16:15:01 +01:00
moveUp(qMax(count(), 1));
handleStartOfLine();
2008-12-19 14:43:14 +01:00
finishMovement();
} else if (key == control('l')) {
// screen redraw. should not be needed
} else if (key == 'm') {
m_subsubmode = MarkSubSubMode;
2008-12-19 15:00:06 +01:00
} else if (key == 'M') {
2008-12-27 22:50:58 +01:00
m_tc = EDITOR(cursorForPosition(QPoint(0, EDITOR(height()) / 2)));
handleStartOfLine();
2008-12-19 15:00:06 +01:00
finishMovement();
} else if (key == 'n') { // FIXME: see comment for '/'
if (hasConfig(ConfigIncSearch))
emit q->findNextRequested(false);
else
search(lastSearchString(), m_lastSearchForward);
recordJump();
} else if (key == 'N') {
if (hasConfig(ConfigIncSearch))
emit q->findNextRequested(true);
else
search(lastSearchString(), !m_lastSearchForward);
recordJump();
} else if (key == 'o' || key == 'O') {
beginEditBlock();
setDotCommand("%1o", count());
enterInsertMode();
moveToFirstNonBlankOnLine();
if (key == 'O')
moveUp();
2009-01-16 16:15:01 +01:00
moveToEndOfLine();
m_tc.insertText("\n");
2009-04-03 11:54:29 +02:00
insertAutomaticIndentation(key == 'o');
endEditBlock();
} else if (key == control('o')) {
if (!m_jumpListUndo.isEmpty()) {
m_jumpListRedo.append(cursorPosition());
setCursorPosition(m_jumpListUndo.last());
m_jumpListUndo.pop_back();
}
2009-01-08 13:43:24 +01:00
} else if (key == 'p' || key == 'P') {
pasteText(key == 'p');
setTargetColumn();
setDotCommand("%1p", count());
finishMovement();
} else if (key == 'r') {
2009-01-22 15:08:50 +01:00
m_submode = ReplaceSubMode;
setDotCommand("r");
} else if (key == 'R') {
// FIXME: right now we repeat the insertion count() times,
2009-01-22 15:08:50 +01:00
// but not the deletion
m_lastInsertion.clear();
enterInsertMode();
m_submode = ReplaceSubMode;
setDotCommand("R");
} else if (key == control('r')) {
redo();
2008-12-27 22:22:16 +01:00
} else if (key == 's') {
2009-04-01 15:52:48 +02:00
if (atEndOfLine())
moveLeft();
setAnchor();
2009-01-16 16:15:01 +01:00
moveRight(qMin(count(), rightDist()));
yankSelectedText();
removeSelectedText();
2009-08-20 10:21:35 +02:00
setDotCommand("%1s", count());
m_opcount.clear();
m_mvcount.clear();
enterInsertMode();
} else if (key == 't') {
m_movetype = MoveInclusive;
m_subsubmode = FtSubSubMode;
m_subsubdata = key;
} else if (key == 'T') {
m_movetype = MoveExclusive;
2008-12-26 00:18:03 +01:00
m_subsubmode = FtSubSubMode;
m_subsubdata = key;
} else if (key == 'u') {
undo();
} else if (key == control('u')) {
int sline = cursorLineOnScreen();
// FIXME: this should use the "scroll" option, and "count"
moveUp(linesOnScreen() / 2);
handleStartOfLine();
scrollToLineInDocument(cursorLineInDocument() - sline);
finishMovement();
} else if (key == 'v') {
enterVisualMode(VisualCharMode);
} else if (key == 'V') {
enterVisualMode(VisualLineMode);
} else if (key == control('v')) {
enterVisualMode(VisualBlockMode);
} else if (key == 'w') { // tested
2009-01-16 16:42:31 +01:00
// Special case: "cw" and "cW" work the same as "ce" and "cE" if the
// cursor is on a non-blank.
if (m_submode == ChangeSubMode) {
2009-01-16 16:42:31 +01:00
moveToWordBoundary(false, true);
m_movetype = MoveInclusive;
} else {
2009-01-16 16:42:31 +01:00
moveToNextWord(false);
m_movetype = MoveExclusive;
}
2009-01-06 11:43:49 +01:00
finishMovement("w");
} else if (key == 'W') {
2009-01-28 18:48:22 +01:00
if (m_submode == ChangeSubMode) {
moveToWordBoundary(true, true);
m_movetype = MoveInclusive;
2009-01-28 18:48:22 +01:00
} else {
moveToNextWord(true);
m_movetype = MoveExclusive;
2009-01-28 18:48:22 +01:00
}
2009-01-06 11:43:49 +01:00
finishMovement("W");
2009-04-03 16:33:28 +02:00
} else if (key == control('w')) {
m_submode = WindowSubMode;
} else if (key == 'x' && m_visualMode == NoVisualMode) { // = "dl"
m_movetype = MoveExclusive;
if (atEndOfLine())
2009-01-16 17:38:15 +01:00
moveLeft();
2009-01-22 15:15:42 +01:00
setAnchor();
m_submode = DeleteSubMode;
2009-01-16 16:15:01 +01:00
moveRight(qMin(count(), rightDist()));
setDotCommand("%1x", count());
2009-03-05 14:08:42 +01:00
finishMovement();
} else if (key == 'X') {
if (leftDist() > 0) {
2009-01-16 16:15:01 +01:00
setAnchor();
moveLeft(qMin(count(), leftDist()));
yankSelectedText();
removeSelectedText();
}
finishMovement();
} else if ((m_submode == YankSubMode && key == 'y')
|| (key == 'Y' && m_visualMode == NoVisualMode)) {
const int line = cursorLineInDocument() + 1;
m_savedYankPosition = position();
setAnchor(firstPositionInLine(line));
setPosition(lastPositionInLine(line+count() - 1));
2009-10-16 11:30:46 +02:00
if (count() > 1)
showBlackMessage(QString("%1 lines yanked").arg(count()));
m_rangemode = RangeLineMode;
m_movetype = MoveLineWise;
m_submode = YankSubMode;
finishMovement();
} else if (key == 'y' && m_visualMode == NoVisualMode) {
if (m_rangemode == RangeLineMode) {
m_savedYankPosition = position();
setAnchor(firstPositionInLine(cursorLineInDocument() + 1));
} else {
m_savedYankPosition = position();
if (atEndOfLine())
moveLeft();
setAnchor();
m_rangemode = RangeCharMode;
}
2008-12-23 21:34:21 +01:00
m_submode = YankSubMode;
} else if (key == 'y' && m_visualMode == VisualCharMode) {
Range range(position(), anchor(), RangeCharMode);
range.endPos++; // MoveInclusive
yankText(range, m_register);
setPosition(qMin(position(), anchor()));
leaveVisualMode();
finishMovement();
} else if ((key == 'y' && m_visualMode == VisualLineMode)
|| (key == 'Y' && m_visualMode == VisualLineMode)
|| (key == 'Y' && m_visualMode == VisualCharMode)) {
m_rangemode = RangeLineMode;
yankSelectedText();
setPosition(qMin(position(), anchor()));
moveToStartOfLine();
leaveVisualMode();
2009-01-16 17:38:15 +01:00
finishMovement();
} else if ((key == 'y' || key == 'Y') && m_visualMode == VisualBlockMode) {
m_rangemode = RangeBlockMode;
yankSelectedText();
setPosition(qMin(position(), anchor()));
leaveVisualMode();
finishMovement();
2008-12-19 16:20:39 +01:00
} else if (key == 'z') {
m_submode = ZSubMode;
} else if (key == 'Z') {
m_submode = CapitalZSubMode;
} else if (key == '~' && !atEndOfLine()) {
beginEditBlock();
2009-01-16 16:15:01 +01:00
setAnchor();
moveRight(qMin(count(), rightDist()));
QString str = selectedText();
removeSelectedText();
2008-12-25 22:22:41 +01:00
for (int i = str.size(); --i >= 0; ) {
QChar c = str.at(i);
str[i] = c.isUpper() ? c.toLower() : c.toUpper();
}
m_tc.insertText(str);
endEditBlock();
} else if (key == Key_PageDown || key == control('f')) {
moveDown(count() * (linesOnScreen() - 2) - cursorLineOnScreen());
scrollToLineInDocument(cursorLineInDocument());
handleStartOfLine();
finishMovement();
} else if (key == Key_PageUp || key == control('b')) {
moveUp(count() * (linesOnScreen() - 2) + cursorLineOnScreen());
scrollToLineInDocument(cursorLineInDocument() + linesOnScreen() - 2);
handleStartOfLine();
finishMovement();
} else if (key == Key_Delete) {
setAnchor();
moveRight(qMin(1, rightDist()));
removeSelectedText();
2008-12-25 22:57:21 +01:00
} else if (key == Key_Escape) {
if (m_visualMode != NoVisualMode) {
leaveVisualMode();
} else if (m_submode != NoSubMode) {
m_submode = NoSubMode;
m_subsubmode = NoSubSubMode;
finishMovement();
}
} else {
qDebug() << "IGNORED IN COMMAND MODE: " << key << text
<< " VISUAL: " << m_visualMode;
handled = EventUnhandled;
}
return handled;
}
EventResult FakeVimHandler::Private::handleInsertMode(int key, int,
const QString &text)
{
if (key == Key_Escape || key == 27 || key == control('c')) {
// start with '1', as one instance was already physically inserted
// while typing
QString data = m_lastInsertion;
for (int i = 1; i < count(); ++i) {
2008-12-27 12:24:50 +01:00
m_tc.insertText(m_lastInsertion);
data += m_lastInsertion;
}
2009-01-16 16:15:01 +01:00
moveLeft(qMin(1, leftDist()));
setTargetColumn();
m_dotCommand += m_lastInsertion;
2009-03-12 17:25:43 +01:00
m_dotCommand += QChar(27);
recordNewUndo();
enterCommandMode();
2009-05-04 09:35:46 +02:00
} else if (key == Key_Insert) {
if (m_submode == ReplaceSubMode) {
EDITOR(setCursorWidth(m_cursorWidth));
EDITOR(setOverwriteMode(false));
m_submode = NoSubMode;
} else {
EDITOR(setCursorWidth(m_cursorWidth));
EDITOR(setOverwriteMode(true));
m_submode = ReplaceSubMode;
}
} else if (key == Key_Left) {
2009-01-16 16:15:01 +01:00
moveLeft(count());
setTargetColumn();
2008-12-27 12:24:50 +01:00
m_lastInsertion.clear();
} else if (key == Key_Down) {
//removeAutomaticIndentation();
m_submode = NoSubMode;
2009-01-16 16:15:01 +01:00
moveDown(count());
2008-12-27 12:24:50 +01:00
m_lastInsertion.clear();
} else if (key == Key_Up) {
//removeAutomaticIndentation();
m_submode = NoSubMode;
2009-01-16 16:15:01 +01:00
moveUp(count());
2008-12-27 12:24:50 +01:00
m_lastInsertion.clear();
} else if (key == Key_Right) {
2009-01-16 16:15:01 +01:00
moveRight(count());
setTargetColumn();
2008-12-27 12:24:50 +01:00
m_lastInsertion.clear();
} else if (key == Key_Return) {
m_submode = NoSubMode;
m_tc.insertBlock();
m_lastInsertion += "\n";
2009-04-03 11:54:29 +02:00
insertAutomaticIndentation(true);
setTargetColumn();
2009-01-09 15:15:09 +01:00
} else if (key == Key_Backspace || key == control('h')) {
2009-10-16 11:30:46 +02:00
if (!removeAutomaticIndentation())
2009-04-03 11:54:29 +02:00
if (!m_lastInsertion.isEmpty() || hasConfig(ConfigBackspace, "start")) {
m_tc.deletePreviousChar();
m_lastInsertion.chop(1);
setTargetColumn();
2009-04-03 11:54:29 +02:00
}
} else if (key == Key_Delete) {
m_tc.deleteChar();
2008-12-27 12:24:50 +01:00
m_lastInsertion.clear();
} else if (key == Key_PageDown || key == control('f')) {
2009-04-03 11:54:29 +02:00
removeAutomaticIndentation();
2009-01-16 16:15:01 +01:00
moveDown(count() * (linesOnScreen() - 2));
2008-12-27 12:24:50 +01:00
m_lastInsertion.clear();
} else if (key == Key_PageUp || key == control('b')) {
2009-04-03 11:54:29 +02:00
removeAutomaticIndentation();
2009-01-16 16:15:01 +01:00
moveUp(count() * (linesOnScreen() - 2));
2008-12-27 12:24:50 +01:00
m_lastInsertion.clear();
} else if (key == Key_Tab && hasConfig(ConfigExpandTab)) {
2009-03-30 12:40:08 +02:00
QString str = QString(theFakeVimSetting(ConfigTabStop)->value().toInt(), ' ');
m_lastInsertion.append(str);
m_tc.insertText(str);
setTargetColumn();
} else if (key >= control('a') && key <= control('z')) {
// ignore these
} else if (!text.isEmpty()) {
m_justAutoIndented = false;
2008-12-27 12:24:50 +01:00
m_lastInsertion.append(text);
if (m_submode == ReplaceSubMode) {
if (atEndOfLine())
m_submode = NoSubMode;
else
m_tc.deleteChar();
}
m_tc.insertText(text);
if (0 && hasConfig(ConfigAutoIndent) && isElectricCharacter(text.at(0))) {
const QString leftText = m_tc.block().text()
.left(m_tc.position() - 1 - m_tc.block().position());
2009-03-06 13:03:33 +01:00
if (leftText.simplified().isEmpty())
indentRegion(text.at(0));
}
if (!m_inReplay)
emit q->completionRequested();
setTargetColumn();
} else {
return EventUnhandled;
}
updateMiniBuffer();
return EventHandled;
}
EventResult FakeVimHandler::Private::handleMiniBufferModes(int key, int unmodified,
const QString &text)
{
Q_UNUSED(text)
if (key == Key_Escape || key == control('c')) {
m_commandBuffer.clear();
enterCommandMode();
2008-12-27 21:01:05 +01:00
updateMiniBuffer();
} else if (key == Key_Backspace) {
if (m_commandBuffer.isEmpty()) {
enterCommandMode();
} else {
m_commandBuffer.chop(1);
}
2008-12-27 21:01:05 +01:00
updateMiniBuffer();
2009-01-08 17:21:51 +01:00
} else if (key == Key_Left) {
// FIXME:
if (!m_commandBuffer.isEmpty())
m_commandBuffer.chop(1);
updateMiniBuffer();
} else if (unmodified == Key_Return && m_mode == ExMode) {
2008-12-28 00:32:07 +01:00
if (!m_commandBuffer.isEmpty()) {
m_commandHistory.takeLast();
m_commandHistory.append(m_commandBuffer);
2009-01-06 11:51:24 +01:00
handleExCommand(m_commandBuffer);
leaveVisualMode();
2008-12-28 00:32:07 +01:00
}
} else if (unmodified == Key_Return && isSearchMode()) {
2008-12-28 00:32:07 +01:00
if (!m_commandBuffer.isEmpty()) {
m_searchHistory.takeLast();
m_searchHistory.append(m_commandBuffer);
m_lastSearchForward = (m_mode == SearchForwardMode);
2008-12-28 00:32:07 +01:00
search(lastSearchString(), m_lastSearchForward);
recordJump();
2008-12-28 00:32:07 +01:00
}
enterCommandMode();
2008-12-27 21:01:05 +01:00
updateMiniBuffer();
} else if ((key == Key_Up || key == Key_PageUp) && isSearchMode()) {
// FIXME: This and the three cases below are wrong as vim
// takes only matching entries in the history into account.
if (m_searchHistoryIndex > 0) {
2008-12-26 17:01:21 +01:00
--m_searchHistoryIndex;
2009-01-08 17:40:27 +01:00
showBlackMessage(m_searchHistory.at(m_searchHistoryIndex));
}
} else if ((key == Key_Up || key == Key_PageUp) && m_mode == ExMode) {
if (m_commandHistoryIndex > 0) {
2008-12-28 00:32:07 +01:00
--m_commandHistoryIndex;
2009-01-08 17:40:27 +01:00
showBlackMessage(m_commandHistory.at(m_commandHistoryIndex));
2008-12-26 17:01:21 +01:00
}
} else if ((key == Key_Down || key == Key_PageDown) && isSearchMode()) {
if (m_searchHistoryIndex < m_searchHistory.size() - 1) {
2008-12-26 17:01:21 +01:00
++m_searchHistoryIndex;
2009-01-08 17:40:27 +01:00
showBlackMessage(m_searchHistory.at(m_searchHistoryIndex));
}
} else if ((key == Key_Down || key == Key_PageDown) && m_mode == ExMode) {
if (m_commandHistoryIndex < m_commandHistory.size() - 1) {
2008-12-28 00:32:07 +01:00
++m_commandHistoryIndex;
2009-01-08 17:40:27 +01:00
showBlackMessage(m_commandHistory.at(m_commandHistoryIndex));
2008-12-26 17:01:21 +01:00
}
2008-12-27 22:41:47 +01:00
} else if (key == Key_Tab) {
m_commandBuffer += QChar(9);
updateMiniBuffer();
} else if (QChar(key).isPrint()) {
m_commandBuffer += QChar(key);
2008-12-27 21:01:05 +01:00
updateMiniBuffer();
} else {
qDebug() << "IGNORED IN MINIBUFFER MODE: " << key << text;
return EventUnhandled;
}
return EventHandled;
}
2008-12-28 02:15:26 +01:00
// 1 based.
int FakeVimHandler::Private::readLineCode(QString &cmd)
{
//qDebug() << "CMD: " << cmd;
if (cmd.isEmpty())
return -1;
QChar c = cmd.at(0);
cmd = cmd.mid(1);
if (c == '.')
return cursorLineInDocument() + 1;
if (c == '$')
return linesInDocument();
2008-12-29 14:47:42 +01:00
if (c == '\'' && !cmd.isEmpty()) {
int mark = m_marks.value(cmd.at(0).unicode());
if (!mark) {
2009-10-07 09:25:19 +02:00
showRedMessage(msgE20MarkNotSet(cmd.at(0)));
cmd = cmd.mid(1);
2008-12-29 14:47:42 +01:00
return -1;
}
cmd = cmd.mid(1);
return lineForPosition(mark);
2008-12-29 14:47:42 +01:00
}
2008-12-28 02:15:26 +01:00
if (c == '-') {
int n = readLineCode(cmd);
return cursorLineInDocument() + 1 - (n == -1 ? 1 : n);
}
if (c == '+') {
int n = readLineCode(cmd);
return cursorLineInDocument() + 1 + (n == -1 ? 1 : n);
}
if (c == '\'' && !cmd.isEmpty()) {
2009-01-08 17:21:51 +01:00
int pos = m_marks.value(cmd.at(0).unicode(), -1);
//qDebug() << " MARK: " << cmd.at(0) << pos << lineForPosition(pos);
if (pos == -1) {
2009-10-07 09:25:19 +02:00
showRedMessage(msgE20MarkNotSet(cmd.at(0)));
cmd = cmd.mid(1);
return -1;
}
cmd = cmd.mid(1);
return lineForPosition(pos);
}
2008-12-28 02:15:26 +01:00
if (c.isDigit()) {
int n = c.unicode() - '0';
while (!cmd.isEmpty()) {
c = cmd.at(0);
if (!c.isDigit())
break;
cmd = cmd.mid(1);
n = n * 10 + (c.unicode() - '0');
}
//qDebug() << "N: " << n;
return n;
}
// not parsed
cmd = c + cmd;
return -1;
2008-12-28 02:15:26 +01:00
}
2009-01-16 16:15:01 +01:00
void FakeVimHandler::Private::selectRange(int beginLine, int endLine)
2009-01-06 11:33:07 +01:00
{
if (beginLine == -1)
beginLine = cursorLineInDocument();
if (endLine == -1)
endLine = cursorLineInDocument();
if (beginLine > endLine)
qSwap(beginLine, endLine);
setAnchor(firstPositionInLine(beginLine));
if (endLine == linesInDocument())
setPosition(lastPositionInLine(endLine));
else
setPosition(firstPositionInLine(endLine + 1));
2009-01-06 11:33:07 +01:00
}
2009-04-06 10:58:48 +02:00
void FakeVimHandler::Private::handleCommand(const QString &cmd)
{
m_tc = EDITOR(textCursor());
handleExCommand(cmd);
EDITOR(setTextCursor(m_tc));
}
2009-01-06 11:51:24 +01:00
void FakeVimHandler::Private::handleExCommand(const QString &cmd0)
{
2008-12-28 02:15:26 +01:00
QString cmd = cmd0;
2009-05-14 17:02:30 +02:00
if (cmd.startsWith(QLatin1Char('%')))
2008-12-28 02:15:26 +01:00
cmd = "1,$" + cmd.mid(1);
2009-04-01 15:52:48 +02:00
2009-01-06 11:37:24 +01:00
int beginLine = -1;
int endLine = -1;
2008-12-28 02:15:26 +01:00
int line = readLineCode(cmd);
if (line != -1)
beginLine = line;
2008-12-28 02:15:26 +01:00
if (cmd.startsWith(',')) {
cmd = cmd.mid(1);
line = readLineCode(cmd);
if (line != -1)
endLine = line;
}
//qDebug() << "RANGE: " << beginLine << endLine << cmd << cmd0 << m_marks;
2008-12-28 02:15:26 +01:00
static QRegExp reQuit("^qa?!?$");
2009-01-06 11:33:07 +01:00
static QRegExp reDelete("^d( (.*))?$");
static QRegExp reHistory("^his(tory)?( (.*))?$");
2009-04-06 10:58:48 +02:00
static QRegExp reNormal("^norm(al)?( (.*))?$");
static QRegExp reSet("^set?( (.*))?$");
static QRegExp reWrite("^[wx]q?a?!?( (.*))?$");
static QRegExp reSubstitute("^s(.)(.*)\\1(.*)\\1([gi]*)");
2009-10-16 11:30:46 +02:00
enterCommandMode();
showBlackMessage(QString());
2008-12-28 02:15:26 +01:00
if (cmd.isEmpty()) {
setPosition(firstPositionInLine(beginLine));
2009-01-08 17:40:27 +01:00
showBlackMessage(QString());
2009-01-06 11:33:07 +01:00
} else if (reDelete.indexIn(cmd) != -1) { // :d
2009-01-16 16:15:01 +01:00
selectRange(beginLine, endLine);
2009-01-06 11:33:07 +01:00
QString reg = reDelete.cap(2);
QString text = selectedText();
removeSelectedText();
if (!reg.isEmpty()) {
Register &r = m_registers[reg.at(0).unicode()];
r.contents = text;
r.rangemode = RangeLineMode;
}
} else if (reWrite.indexIn(cmd) != -1) { // :w and :x
2009-01-06 11:51:24 +01:00
bool noArgs = (beginLine == -1);
2009-01-06 11:33:07 +01:00
if (beginLine == -1)
beginLine = 0;
if (endLine == -1)
endLine = linesInDocument();
//qDebug() << "LINES: " << beginLine << endLine;
int indexOfSpace = cmd.indexOf(QChar(' '));
QString prefix;
if (indexOfSpace < 0)
prefix = cmd;
else
prefix = cmd.left(indexOfSpace);
bool forced = prefix.contains(QChar('!'));
bool quit = prefix.contains(QChar('q')) || prefix.contains(QChar('x'));
bool quitAll = quit && prefix.contains(QChar('a'));
QString fileName = reWrite.cap(2);
if (fileName.isEmpty())
fileName = m_currentFileName;
2009-01-23 17:02:22 +01:00
QFile file1(fileName);
bool exists = file1.exists();
2009-01-06 11:51:24 +01:00
if (exists && !forced && !noArgs) {
2009-10-07 09:25:19 +02:00
showRedMessage(FakeVimHandler::tr("File '%1' exists (add ! to override)").arg(fileName));
2009-01-23 17:02:22 +01:00
} else if (file1.open(QIODevice::ReadWrite)) {
file1.close();
QTextCursor tc = m_tc;
Range range(firstPositionInLine(beginLine),
firstPositionInLine(endLine), RangeLineMode);
QString contents = text(range);
m_tc = tc;
2009-01-23 17:02:22 +01:00
qDebug() << "LINES: " << beginLine << endLine;
bool handled = false;
emit q->writeFileRequested(&handled, fileName, contents);
// nobody cared, so act ourselves
if (!handled) {
2009-01-23 17:02:22 +01:00
//qDebug() << "HANDLING MANUAL SAVE TO " << fileName;
QFile::remove(fileName);
QFile file2(fileName);
if (file2.open(QIODevice::ReadWrite)) {
QTextStream ts(&file2);
ts << contents;
} else {
2009-10-07 09:25:19 +02:00
showRedMessage(FakeVimHandler::tr("Cannot open file '%1' for writing").arg(fileName));
2009-01-23 17:02:22 +01:00
}
}
// check result by reading back
2009-01-23 17:02:22 +01:00
QFile file3(fileName);
file3.open(QIODevice::ReadOnly);
QByteArray ba = file3.readAll();
2009-10-07 09:25:19 +02:00
showBlackMessage(FakeVimHandler::tr("\"%1\" %2 %3L, %4C written")
2008-12-27 19:47:29 +01:00
.arg(fileName).arg(exists ? " " : " [New] ")
2009-01-08 17:40:27 +01:00
.arg(ba.count('\n')).arg(ba.size()));
if (quitAll)
passUnknownExCommand(forced ? "qa!" : "qa");
else if (quit)
passUnknownExCommand(forced ? "q!" : "q");
} else {
2009-10-07 09:25:19 +02:00
showRedMessage(FakeVimHandler::tr("Cannot open file '%1' for reading").arg(fileName));
2008-12-27 19:47:29 +01:00
}
2009-01-06 11:50:30 +01:00
} else if (cmd.startsWith("r ")) { // :r
m_currentFileName = cmd.mid(2);
QFile file(m_currentFileName);
file.open(QIODevice::ReadOnly);
QTextStream ts(&file);
2009-01-06 11:50:30 +01:00
QString data = ts.readAll();
EDITOR(setPlainText(data));
2009-10-07 09:25:19 +02:00
showBlackMessage(FakeVimHandler::tr("\"%1\" %2L, %3C")
2009-01-08 17:40:27 +01:00
.arg(m_currentFileName).arg(data.count('\n')).arg(data.size()));
2009-05-14 17:02:30 +02:00
} else if (cmd.startsWith(QLatin1Char('!'))) {
2009-01-16 16:15:01 +01:00
selectRange(beginLine, endLine);
2009-01-08 17:21:51 +01:00
QString command = cmd.mid(1).trimmed();
QString text = selectedText();
removeSelectedText();
2009-01-08 17:21:51 +01:00
QProcess proc;
proc.start(cmd.mid(1));
proc.waitForStarted();
proc.write(text.toUtf8());
proc.closeWriteChannel();
proc.waitForFinished();
QString result = QString::fromUtf8(proc.readAllStandardOutput());
m_tc.insertText(result);
2009-01-08 17:21:51 +01:00
leaveVisualMode();
setPosition(firstPositionInLine(beginLine));
//qDebug() << "FILTER: " << command;
2009-10-07 09:25:19 +02:00
showBlackMessage(FakeVimHandler::tr("%n lines filtered", 0, text.count('\n')));
2009-05-14 17:02:30 +02:00
} else if (cmd.startsWith(QLatin1Char('>'))) {
m_anchor = firstPositionInLine(beginLine);
setPosition(firstPositionInLine(endLine));
shiftRegionRight(1);
leaveVisualMode();
2009-10-07 09:25:19 +02:00
showBlackMessage(FakeVimHandler::tr("%n lines >ed %1 time", 0, (endLine - beginLine + 1)).arg(1));
2009-01-08 17:21:51 +01:00
} else if (cmd == "red" || cmd == "redo") { // :redo
redo();
updateMiniBuffer();
2009-04-06 10:58:48 +02:00
} else if (reNormal.indexIn(cmd) != -1) { // :normal
2009-04-08 16:05:24 +02:00
//qDebug() << "REPLAY: " << reNormal.cap(3);
replay(reNormal.cap(3), 1);
} else if (reSubstitute.indexIn(cmd) != -1) { // :substitute
QString needle = reSubstitute.cap(2);
const QString replacement = reSubstitute.cap(3);
QString flags = reSubstitute.cap(4);
const bool startOfLineOnly = needle.startsWith('^');
if (startOfLineOnly)
needle.remove(0, 1);
needle.replace('$', '\n');
needle.replace("\\\n", "\\$");
QRegExp pattern(needle);
if (flags.contains('i'))
pattern.setCaseSensitivity(Qt::CaseInsensitive);
const bool global = flags.contains('g');
2009-06-02 16:43:09 +02:00
beginEditBlock();
for (int line = beginLine; line <= endLine; ++line) {
const int start = firstPositionInLine(line);
const int end = lastPositionInLine(line);
for (int position = start; position <= end && position >= start; ) {
position = pattern.indexIn(m_tc.document()->toPlainText(), position);
if (startOfLineOnly && position != start)
break;
if (position != -1) {
m_tc.setPosition(position);
m_tc.movePosition(QTextCursor::NextCharacter,
2009-04-14 15:22:52 +02:00
KeepAnchor, pattern.matchedLength());
QString text = m_tc.selectedText();
if (text.endsWith(ParagraphSeparator)) {
text = replacement + "\n";
} else {
text.replace(ParagraphSeparator, "\n");
text.replace(pattern, replacement);
}
m_tc.removeSelectedText();
m_tc.insertText(text);
}
if (!global)
break;
}
}
2009-06-02 16:43:09 +02:00
endEditBlock();
} else if (reSet.indexIn(cmd) != -1) { // :set
showBlackMessage(QString());
QString arg = reSet.cap(2);
2009-03-30 15:27:59 +02:00
SavedAction *act = theFakeVimSettings()->item(arg);
if (arg.isEmpty()) {
2009-03-30 12:40:08 +02:00
theFakeVimSetting(SettingsDialog)->trigger(QVariant());
2009-03-30 15:27:59 +02:00
} else if (act && act->value().type() == QVariant::Bool) {
// boolean config to be switched on
bool oldValue = act->value().toBool();
2009-03-30 12:40:08 +02:00
if (oldValue == false)
2009-03-30 15:27:59 +02:00
act->setValue(true);
2009-03-30 12:40:08 +02:00
else if (oldValue == true)
2009-03-30 15:27:59 +02:00
{} // nothing to do
} else if (act) {
// non-boolean to show
showBlackMessage(arg + '=' + act->value().toString());
} else if (arg.startsWith("no")
&& (act = theFakeVimSettings()->item(arg.mid(2)))) {
// boolean config to be switched off
2009-03-30 15:27:59 +02:00
bool oldValue = act->value().toBool();
2009-03-30 12:40:08 +02:00
if (oldValue == true)
2009-03-30 15:27:59 +02:00
act->setValue(false);
2009-03-30 12:40:08 +02:00
else if (oldValue == false)
2009-03-30 15:27:59 +02:00
{} // nothing to do
} else if (arg.contains('=')) {
// non-boolean config to set
int p = arg.indexOf('=');
2009-03-30 15:27:59 +02:00
act = theFakeVimSettings()->item(arg.left(p));
if (act)
act->setValue(arg.mid(p + 1));
} else {
2009-10-07 09:25:19 +02:00
showRedMessage(FakeVimHandler::tr("E512: Unknown option: ") + arg);
}
updateMiniBuffer();
} else if (reHistory.indexIn(cmd) != -1) { // :history
QString arg = reSet.cap(3);
if (arg.isEmpty()) {
QString info;
info += "# command history\n";
int i = 0;
foreach (const QString &item, m_commandHistory) {
++i;
info += QString("%1 %2\n").arg(i, -8).arg(item);
}
emit q->extraInformationChanged(info);
} else {
notImplementedYet();
}
updateMiniBuffer();
2008-12-28 02:15:26 +01:00
} else {
passUnknownExCommand(cmd);
}
}
void FakeVimHandler::Private::passUnknownExCommand(const QString &cmd)
{
emit q->handleExCommandRequested(cmd);
}
2009-03-12 18:05:36 +01:00
static void vimPatternToQtPattern(QString *needle, QTextDocument::FindFlags *flags)
{
// FIXME: Rough mapping of a common case
if (needle->startsWith("\\<") && needle->endsWith("\\>"))
(*flags) |= QTextDocument::FindWholeWords;
needle->replace("\\<", ""); // start of word
needle->replace("\\>", ""); // end of word
//qDebug() << "NEEDLE " << needle0 << needle;
}
2009-01-16 09:56:08 +01:00
void FakeVimHandler::Private::search(const QString &needle0, bool forward)
{
2009-01-16 17:44:24 +01:00
showBlackMessage((forward ? '/' : '?') + needle0);
CursorPosition origPosition = cursorPosition();
2008-12-26 17:01:21 +01:00
QTextDocument::FindFlags flags = QTextDocument::FindCaseSensitively;
2008-12-26 00:18:03 +01:00
if (!forward)
2009-01-16 09:56:08 +01:00
flags |= QTextDocument::FindBackward;
QString needle = needle0;
2009-03-12 18:05:36 +01:00
vimPatternToQtPattern(&needle, &flags);
2008-12-26 00:18:03 +01:00
if (forward)
2008-12-25 13:20:09 +01:00
m_tc.movePosition(Right, MoveAnchor, 1);
int oldLine = cursorLineInDocument() - cursorLineOnScreen();
EDITOR(setTextCursor(m_tc));
if (EDITOR(find(needle, flags))) {
m_tc = EDITOR(textCursor());
2009-01-16 09:56:08 +01:00
m_tc.setPosition(m_tc.anchor());
// making this unconditional feels better, but is not "vim like"
if (oldLine != cursorLineInDocument() - cursorLineOnScreen())
scrollToLineInDocument(cursorLineInDocument() - linesOnScreen() / 2);
2009-03-12 18:05:36 +01:00
highlightMatches(needle);
2009-03-20 09:26:34 +01:00
} else {
2009-07-03 11:22:18 +02:00
m_tc.setPosition(forward ? 0 : lastPositionInDocument());
2009-03-20 09:26:34 +01:00
EDITOR(setTextCursor(m_tc));
if (EDITOR(find(needle, flags))) {
m_tc = EDITOR(textCursor());
m_tc.setPosition(m_tc.anchor());
if (oldLine != cursorLineInDocument() - cursorLineOnScreen())
scrollToLineInDocument(cursorLineInDocument() - linesOnScreen() / 2);
if (forward)
2009-10-07 09:25:19 +02:00
showRedMessage(FakeVimHandler::tr("search hit BOTTOM, continuing at TOP"));
2009-03-20 09:26:34 +01:00
else
2009-10-07 09:25:19 +02:00
showRedMessage(FakeVimHandler::tr("search hit TOP, continuing at BOTTOM"));
2009-03-20 09:26:34 +01:00
highlightMatches(needle);
} else {
highlightMatches(QString());
setCursorPosition(origPosition);
2009-10-07 09:25:19 +02:00
showRedMessage(FakeVimHandler::tr("Pattern not found: ") + needle);
2009-03-20 09:26:34 +01:00
}
}
}
2009-03-12 18:05:36 +01:00
void FakeVimHandler::Private::highlightMatches(const QString &needle0)
{
2009-03-20 09:26:34 +01:00
if (!hasConfig(ConfigHlSearch))
return;
if (needle0 == m_oldNeedle)
2009-03-12 18:05:36 +01:00
return;
2009-03-20 09:26:34 +01:00
m_oldNeedle = needle0;
m_searchSelections.clear();
2009-03-12 18:05:36 +01:00
2009-03-20 09:26:34 +01:00
if (!needle0.isEmpty()) {
QTextCursor tc = m_tc;
2009-04-14 15:47:25 +02:00
tc.movePosition(StartOfDocument, MoveAnchor);
2009-03-12 18:05:36 +01:00
2009-03-20 09:26:34 +01:00
QTextDocument::FindFlags flags = QTextDocument::FindCaseSensitively;
QString needle = needle0;
vimPatternToQtPattern(&needle, &flags);
2009-03-12 18:05:36 +01:00
EDITOR(setTextCursor(tc));
2009-03-20 09:26:34 +01:00
while (EDITOR(find(needle, flags))) {
tc = EDITOR(textCursor());
QTextEdit::ExtraSelection sel;
sel.cursor = tc;
sel.format = tc.blockCharFormat();
sel.format.setBackground(QColor(177, 177, 0));
m_searchSelections.append(sel);
tc.movePosition(Right, MoveAnchor);
EDITOR(setTextCursor(tc));
}
2009-03-12 18:05:36 +01:00
}
updateSelection();
}
2008-12-19 14:35:57 +01:00
void FakeVimHandler::Private::moveToFirstNonBlankOnLine()
{
QTextDocument *doc = m_tc.document();
const QTextBlock &block = m_tc.block();
int firstPos = block.position();
2008-12-19 14:35:57 +01:00
for (int i = firstPos, n = firstPos + block.length(); i < n; ++i) {
if (!doc->characterAt(i).isSpace()) {
setPosition(i);
2008-12-19 14:35:57 +01:00
return;
}
}
setPosition(block.position());
2008-12-19 14:35:57 +01:00
}
2009-03-06 13:03:33 +01:00
void FakeVimHandler::Private::indentRegion(QChar typedChar)
{
2009-03-06 13:03:33 +01:00
//int savedPos = anchor();
int beginLine = lineForPosition(anchor());
int endLine = lineForPosition(position());
if (beginLine > endLine)
qSwap(beginLine, endLine);
int amount = 0;
2009-03-06 13:03:33 +01:00
emit q->indentRegion(&amount, beginLine, endLine, typedChar);
setPosition(firstPositionInLine(beginLine));
moveToFirstNonBlankOnLine();
setTargetColumn();
setDotCommand("%1==", endLine - beginLine + 1);
}
void FakeVimHandler::Private::shiftRegionRight(int repeat)
{
int beginLine = lineForPosition(anchor());
int endLine = lineForPosition(position());
if (beginLine > endLine)
qSwap(beginLine, endLine);
2009-03-30 12:40:08 +02:00
int len = config(ConfigShiftWidth).toInt() * repeat;
QString indent(len, ' ');
int firstPos = firstPositionInLine(beginLine);
2009-03-06 13:03:33 +01:00
for (int line = beginLine; line <= endLine; ++line) {
setPosition(firstPositionInLine(line));
m_tc.insertText(indent);
}
2009-03-06 13:03:33 +01:00
setPosition(firstPos);
2009-03-06 13:03:33 +01:00
moveToFirstNonBlankOnLine();
setTargetColumn();
setDotCommand("%1>>", endLine - beginLine + 1);
}
void FakeVimHandler::Private::shiftRegionLeft(int repeat)
{
int beginLine = lineForPosition(anchor());
int endLine = lineForPosition(position());
if (beginLine > endLine)
qSwap(beginLine, endLine);
2009-03-30 12:40:08 +02:00
int shift = config(ConfigShiftWidth).toInt() * repeat;
int tab = config(ConfigTabStop).toInt();
int firstPos = firstPositionInLine(beginLine);
for (int line = beginLine; line <= endLine; ++line) {
int pos = firstPositionInLine(line);
setPosition(pos);
setAnchor(pos);
QString text = m_tc.block().text();
int amount = 0;
int i = 0;
for (; i < text.size() && amount <= shift; ++i) {
if (text.at(i) == ' ')
amount++;
else if (text.at(i) == '\t')
amount += tab; // FIXME: take position into consideration
else
break;
}
setPosition(pos + i);
text = selectedText();
removeSelectedText();
setPosition(pos);
}
2009-03-06 13:03:33 +01:00
setPosition(firstPos);
2009-03-06 13:03:33 +01:00
moveToFirstNonBlankOnLine();
setTargetColumn();
setDotCommand("%1<<", endLine - beginLine + 1);
}
void FakeVimHandler::Private::moveToTargetColumn()
{
const QTextBlock &block = m_tc.block();
int col = m_tc.position() - block.position();
if (col == m_targetColumn)
return;
//qDebug() << "CORRECTING COLUMN FROM: " << col << "TO" << m_targetColumn;
if (m_targetColumn == -1 || block.length() <= m_targetColumn)
m_tc.setPosition(block.position() + block.length() - 1, MoveAnchor);
else
m_tc.setPosition(block.position() + m_targetColumn, MoveAnchor);
}
/* if simple is given:
* class 0: spaces
* class 1: non-spaces
* else
* class 0: spaces
* class 1: non-space-or-letter-or-number
* class 2: letter-or-number
*/
static int charClass(QChar c, bool simple)
{
if (simple)
return c.isSpace() ? 0 : 1;
if (c.isLetterOrNumber() || c.unicode() == '_')
return 2;
return c.isSpace() ? 0 : 1;
}
2008-12-26 00:18:03 +01:00
void FakeVimHandler::Private::moveToWordBoundary(bool simple, bool forward)
2008-12-25 19:50:14 +01:00
{
2008-12-26 00:18:03 +01:00
int repeat = count();
2008-12-25 19:50:14 +01:00
QTextDocument *doc = m_tc.document();
2009-07-03 11:22:18 +02:00
int n = forward ? lastPositionInDocument() : 0;
2009-01-16 16:42:31 +01:00
int lastClass = -1;
2008-12-25 20:12:17 +01:00
while (true) {
QChar c = doc->characterAt(m_tc.position() + (forward ? 1 : -1));
//qDebug() << "EXAMINING: " << c << " AT " << position();
2008-12-25 19:50:14 +01:00
int thisClass = charClass(c, simple);
2008-12-25 20:12:17 +01:00
if (thisClass != lastClass && lastClass != 0)
2008-12-25 19:50:14 +01:00
--repeat;
2009-01-16 16:57:00 +01:00
if (repeat == -1)
2008-12-25 20:12:17 +01:00
break;
2008-12-25 19:50:14 +01:00
lastClass = thisClass;
2008-12-26 00:18:03 +01:00
if (m_tc.position() == n)
2008-12-25 20:12:17 +01:00
break;
forward ? moveRight() : moveLeft();
2008-12-25 19:50:14 +01:00
}
setTargetColumn();
2008-12-25 19:50:14 +01:00
}
2008-12-26 00:18:03 +01:00
void FakeVimHandler::Private::handleFfTt(int key)
2008-12-25 19:50:14 +01:00
{
2008-12-26 00:18:03 +01:00
// m_subsubmode \in { 'f', 'F', 't', 'T' }
bool forward = m_subsubdata == 'f' || m_subsubdata == 't';
int repeat = count();
2008-12-25 19:50:14 +01:00
QTextDocument *doc = m_tc.document();
2008-12-26 00:18:03 +01:00
QTextBlock block = m_tc.block();
int n = block.position();
if (forward)
n += block.length();
int pos = m_tc.position();
2008-12-25 20:12:17 +01:00
while (true) {
2008-12-26 00:18:03 +01:00
pos += forward ? 1 : -1;
if (pos == n)
break;
int uc = doc->characterAt(pos).unicode();
if (uc == ParagraphSeparator)
break;
if (uc == key)
2008-12-25 19:50:14 +01:00
--repeat;
2008-12-25 20:12:17 +01:00
if (repeat == 0) {
2008-12-26 00:18:03 +01:00
if (m_subsubdata == 't')
--pos;
2008-12-26 00:25:38 +01:00
else if (m_subsubdata == 'T')
2008-12-26 00:18:03 +01:00
++pos;
2008-12-26 00:25:38 +01:00
2008-12-26 00:18:03 +01:00
if (forward)
m_tc.movePosition(Right, KeepAnchor, pos - m_tc.position());
else
m_tc.movePosition(Left, KeepAnchor, m_tc.position() - pos);
2008-12-25 20:12:17 +01:00
break;
2008-12-25 19:50:14 +01:00
}
}
setTargetColumn();
2008-12-25 19:50:14 +01:00
}
2008-12-26 00:18:03 +01:00
void FakeVimHandler::Private::moveToNextWord(bool simple)
{
// FIXME: 'w' should stop on empty lines, too
2008-12-26 00:18:03 +01:00
int repeat = count();
2009-07-03 11:22:18 +02:00
int n = lastPositionInDocument();
int lastClass = charClass(characterAtCursor(), simple);
2008-12-25 20:12:17 +01:00
while (true) {
QChar c = characterAtCursor();
int thisClass = charClass(c, simple);
if (thisClass != lastClass && thisClass != 0)
--repeat;
2008-12-25 22:42:50 +01:00
if (repeat == 0)
break;
lastClass = thisClass;
2009-01-16 16:42:31 +01:00
moveRight();
2008-12-25 20:12:17 +01:00
if (m_tc.position() == n)
break;
}
setTargetColumn();
}
void FakeVimHandler::Private::moveToMatchingParanthesis()
{
bool moved = false;
bool forward = false;
emit q->moveToMatchingParenthesis(&moved, &forward, &m_tc);
if (moved && forward) {
if (m_submode == NoSubMode || m_submode == ZSubMode || m_submode == CapitalZSubMode || m_submode == RegisterSubMode)
m_tc.movePosition(Left, KeepAnchor, 1);
}
setTargetColumn();
}
int FakeVimHandler::Private::cursorLineOnScreen() const
{
2009-01-06 11:50:30 +01:00
if (!editor())
return 0;
2009-01-06 11:11:31 +01:00
QRect rect = EDITOR(cursorRect());
return rect.y() / rect.height();
}
int FakeVimHandler::Private::linesOnScreen() const
{
2009-01-06 11:50:30 +01:00
if (!editor())
return 1;
2009-01-06 11:11:31 +01:00
QRect rect = EDITOR(cursorRect());
return EDITOR(height()) / rect.height();
}
2008-12-27 21:01:05 +01:00
int FakeVimHandler::Private::columnsOnScreen() const
{
2009-01-06 11:50:30 +01:00
if (!editor())
return 1;
2009-01-06 11:11:31 +01:00
QRect rect = EDITOR(cursorRect());
// qDebug() << "WID: " << EDITOR(width()) << "RECT: " << rect;
2009-01-06 11:11:31 +01:00
return EDITOR(width()) / rect.width();
2008-12-27 21:01:05 +01:00
}
int FakeVimHandler::Private::cursorLineInDocument() const
{
2009-01-06 11:11:31 +01:00
return m_tc.block().blockNumber();
}
2008-12-27 21:01:05 +01:00
int FakeVimHandler::Private::cursorColumnInDocument() const
{
2009-01-06 11:11:31 +01:00
return m_tc.position() - m_tc.block().position();
2008-12-27 21:01:05 +01:00
}
2008-12-28 02:15:26 +01:00
int FakeVimHandler::Private::linesInDocument() const
{
return m_tc.isNull() ? 0 : m_tc.document()->blockCount();
}
void FakeVimHandler::Private::scrollToLineInDocument(int line)
{
2009-01-06 11:11:31 +01:00
// FIXME: works only for QPlainTextEdit
QScrollBar *scrollBar = EDITOR(verticalScrollBar());
2009-03-20 08:44:52 +01:00
//qDebug() << "SCROLL: " << scrollBar->value() << line;
2009-01-06 11:11:31 +01:00
scrollBar->setValue(line);
//QTC_ASSERT(firstVisibleLineInDocument() == line, /**/);
}
int FakeVimHandler::Private::firstVisibleLineInDocument() const
{
QScrollBar *scrollBar = EDITOR(verticalScrollBar());
if (0 && scrollBar->value() != cursorLineInDocument() - cursorLineOnScreen()) {
qDebug() << "SCROLLBAR: " << scrollBar->value()
<< "CURSORLINE IN DOC" << cursorLineInDocument()
<< "CURSORLINE ON SCREEN" << cursorLineOnScreen();
}
//return scrollBar->value();
return cursorLineInDocument() - cursorLineOnScreen();
}
2009-03-20 08:44:52 +01:00
void FakeVimHandler::Private::scrollUp(int count)
{
scrollToLineInDocument(cursorLineInDocument() - cursorLineOnScreen() - count);
}
int FakeVimHandler::Private::lastPositionInDocument() const
{
2009-04-03 11:54:29 +02:00
QTextBlock block = m_tc.document()->lastBlock();
2009-07-03 11:22:18 +02:00
return block.position() + block.length() - 1;
}
2008-12-26 17:01:21 +01:00
QString FakeVimHandler::Private::lastSearchString() const
{
return m_searchHistory.empty() ? QString() : m_searchHistory.back();
}
QString FakeVimHandler::Private::text(const Range &range) const
{
if (range.rangemode == RangeCharMode) {
QTextCursor tc = m_tc;
tc.setPosition(range.beginPos, MoveAnchor);
tc.setPosition(range.endPos, KeepAnchor);
return tc.selection().toPlainText();
}
if (range.rangemode == RangeLineMode) {
QTextCursor tc = m_tc;
tc.setPosition(firstPositionInLine(lineForPosition(range.beginPos)), MoveAnchor);
tc.setPosition(firstPositionInLine(lineForPosition(range.endPos)+1), KeepAnchor);
return tc.selection().toPlainText();
}
// FIXME: Performance?
int beginLine = lineForPosition(range.beginPos);
int endLine = lineForPosition(range.endPos);
int beginColumn = 0;
int endColumn = INT_MAX;
if (range.rangemode == RangeBlockMode) {
2009-10-16 11:30:46 +02:00
int column1 = range.beginPos - firstPositionInLine(beginLine);
int column2 = range.endPos - firstPositionInLine(endLine);
beginColumn = qMin(column1, column2);
endColumn = qMax(column1, column2);
qDebug() << "COLS: " << beginColumn << endColumn;
2009-10-16 11:30:46 +02:00
}
int len = endColumn - beginColumn + 1;
QString contents;
QTextBlock block = m_tc.document()->findBlockByNumber(beginLine - 1);
for (int i = beginLine; i <= endLine && block.isValid(); ++i) {
QString line = block.text();
if (range.rangemode == RangeBlockMode) {
line = line.mid(beginColumn, len);
if (line.size() < len)
line += QString(len - line.size(), QChar(' '));
}
contents += line;
if (!contents.endsWith('\n'))
contents += '\n';
block = block.next();
}
//qDebug() << "SELECTED: " << contents;
return contents;
}
void FakeVimHandler::Private::yankSelectedText()
{
Range range(anchor(), position());
range.rangemode = m_rangemode;
yankText(range, m_register);
}
void FakeVimHandler::Private::yankText(const Range &range, int toregister)
{
Register &reg = m_registers[toregister];
reg.contents = text(range);
reg.rangemode = range.rangemode;
//qDebug() << "YANKED: " << reg.contents;
}
void FakeVimHandler::Private::removeSelectedText()
{
Range range(anchor(), position());
range.rangemode = m_rangemode;
removeText(range);
}
void FakeVimHandler::Private::removeText(const Range &range)
2009-01-16 16:15:01 +01:00
{
QTextCursor tc = m_tc;
switch (range.rangemode) {
case RangeCharMode: {
tc.setPosition(range.beginPos, MoveAnchor);
tc.setPosition(range.endPos, KeepAnchor);
fixMarks(range.beginPos, tc.selectionStart() - tc.selectionEnd());
tc.removeSelectedText();
return;
}
case RangeLineMode: {
tc.setPosition(range.beginPos, MoveAnchor);
tc.movePosition(StartOfLine, MoveAnchor);
tc.setPosition(range.endPos, KeepAnchor);
tc.movePosition(EndOfLine, KeepAnchor);
tc.movePosition(Right, KeepAnchor, 1);
fixMarks(range.beginPos, tc.selectionStart() - tc.selectionEnd());
tc.removeSelectedText();
return;
}
case RangeBlockMode: {
int beginLine = lineForPosition(range.beginPos);
int endLine = lineForPosition(range.endPos);
2009-10-16 11:30:46 +02:00
int column1 = range.beginPos - firstPositionInLine(beginLine);
int column2 = range.endPos - firstPositionInLine(endLine);
int beginColumn = qMin(column1, column2);
int endColumn = qMax(column1, column2);
qDebug() << "COLS: " << beginColumn << endColumn;
QTextBlock block = m_tc.document()->findBlockByNumber(endLine - 1);
beginEditBlock();
for (int i = beginLine; i <= endLine && block.isValid(); ++i) {
int bCol = qMin(beginColumn, block.length() - 1);
int eCol = qMin(endColumn, block.length() - 1);
tc.setPosition(block.position() + bCol, MoveAnchor);
tc.setPosition(block.position() + eCol, KeepAnchor);
fixMarks(block.position() + bCol, tc.selectionStart() - tc.selectionEnd());
tc.removeSelectedText();
block = block.previous();
}
endEditBlock();
}
}
}
void FakeVimHandler::Private::pasteText(bool afterCursor)
{
const QString text = m_registers[m_register].contents;
const QStringList lines = text.split(QChar('\n'));
switch (m_registers[m_register].rangemode) {
case RangeCharMode: {
m_targetColumn = 0;
for (int i = count(); --i >= 0; ) {
if (afterCursor && rightDist() > 0)
moveRight();
fixMarks(position(), text.length());
m_tc.insertText(text);
moveLeft();
}
break;
}
case RangeLineMode: {
moveToStartOfLine();
m_targetColumn = 0;
for (int i = count(); --i >= 0; ) {
if (afterCursor)
moveDown();
fixMarks(position(), text.length());
m_tc.insertText(text);
moveUp(lines.size() - 1);
}
moveToFirstNonBlankOnLine();
break;
}
case RangeBlockMode: {
beginEditBlock();
QTextBlock block = m_tc.block();
moveRight();
QTextCursor tc = m_tc;
const int col = tc.position() - block.position();
//for (int i = lines.size(); --i >= 0; ) {
for (int i = 0; i < lines.size(); ++i) {
const QString line = lines.at(i);
tc.movePosition(StartOfLine, MoveAnchor);
if (col >= block.length()) {
tc.movePosition(EndOfLine, MoveAnchor);
fixMarks(position(), QString(col - line.size() + 1, QChar(' ')).length());
tc.insertText(QString(col - line.size() + 1, QChar(' ')));
2009-10-16 11:30:46 +02:00
} else {
tc.movePosition(Right, MoveAnchor, col);
}
qDebug() << "INSERT " << line << " AT " << tc.position()
<< "COL: " << col;
fixMarks(position(), line.length());
tc.insertText(line);
tc.movePosition(StartOfLine, MoveAnchor);
tc.movePosition(Down, MoveAnchor, 1);
if (tc.position() >= lastPositionInDocument() - 1) {
fixMarks(position(), QString(QChar('\n')).length());
tc.insertText(QString(QChar('\n')));
tc.movePosition(Up, MoveAnchor, 1);
}
block = block.next();
}
endEditBlock();
break;
}
}
2009-01-16 16:15:01 +01:00
}
//FIXME: This needs to called after undo/insert
void FakeVimHandler::Private::fixMarks(int positionAction, int positionChange)
{
QHashIterator<int, int> i(m_marks);
while (i.hasNext()) {
i.next();
2009-10-16 11:30:46 +02:00
if (i.value() >= positionAction) {
if (i.value() + positionChange > 0)
m_marks[i.key()] = i.value() + positionChange;
else
m_marks.remove(i.key());
}
}
}
int FakeVimHandler::Private::firstPositionInLine(int line) const
2009-01-06 11:33:07 +01:00
{
2009-04-03 11:54:29 +02:00
return m_tc.document()->findBlockByNumber(line - 1).position();
2009-01-06 11:33:07 +01:00
}
int FakeVimHandler::Private::lastPositionInLine(int line) const
{
2009-04-03 11:54:29 +02:00
QTextBlock block = m_tc.document()->findBlockByNumber(line - 1);
return block.position() + block.length() - 1;
}
int FakeVimHandler::Private::lineForPosition(int pos) const
{
QTextCursor tc = m_tc;
tc.setPosition(pos);
return tc.block().blockNumber() + 1;
}
void FakeVimHandler::Private::enterVisualMode(VisualMode visualMode)
{
setAnchor();
m_visualMode = visualMode;
m_marks['<'] = m_tc.position();
m_marks['>'] = m_tc.position();
updateMiniBuffer();
updateSelection();
}
void FakeVimHandler::Private::leaveVisualMode()
{
m_visualMode = NoVisualMode;
updateMiniBuffer();
updateSelection();
}
2009-01-06 11:50:30 +01:00
QWidget *FakeVimHandler::Private::editor() const
2009-01-06 11:43:27 +01:00
{
return m_textedit
? static_cast<QWidget *>(m_textedit)
: static_cast<QWidget *>(m_plaintextedit);
}
void FakeVimHandler::Private::undo()
{
int current = m_tc.document()->availableUndoSteps();
2009-06-02 16:43:09 +02:00
//endEditBlock();
EDITOR(undo());
2009-06-02 16:43:09 +02:00
//beginEditBlock();
int rev = m_tc.document()->availableUndoSteps();
if (current == rev)
2009-10-07 09:25:19 +02:00
showBlackMessage(FakeVimHandler::tr("Already at oldest change"));
else
showBlackMessage(QString());
if (m_undoCursorPosition.contains(rev))
m_tc.setPosition(m_undoCursorPosition[rev]);
}
void FakeVimHandler::Private::redo()
{
int current = m_tc.document()->availableUndoSteps();
2009-06-02 16:43:09 +02:00
//endEditBlock();
EDITOR(redo());
2009-06-02 16:43:09 +02:00
//beginEditBlock();
int rev = m_tc.document()->availableUndoSteps();
if (rev == current)
2009-10-07 09:25:19 +02:00
showBlackMessage(FakeVimHandler::tr("Already at newest change"));
else
showBlackMessage(QString());
if (m_undoCursorPosition.contains(rev))
m_tc.setPosition(m_undoCursorPosition[rev]);
2009-01-16 13:10:42 +01:00
}
void FakeVimHandler::Private::enterInsertMode()
{
EDITOR(setCursorWidth(m_cursorWidth));
EDITOR(setOverwriteMode(false));
m_mode = InsertMode;
m_lastInsertion.clear();
}
void FakeVimHandler::Private::enterCommandMode()
{
EDITOR(setCursorWidth(m_cursorWidth));
EDITOR(setOverwriteMode(true));
m_mode = CommandMode;
}
void FakeVimHandler::Private::enterExMode()
{
EDITOR(setCursorWidth(0));
EDITOR(setOverwriteMode(false));
m_mode = ExMode;
}
void FakeVimHandler::Private::recordJump()
{
m_jumpListUndo.append(cursorPosition());
m_jumpListRedo.clear();
UNDO_DEBUG("jumps: " << m_jumpListUndo);
}
void FakeVimHandler::Private::recordNewUndo()
{
2009-06-02 16:43:09 +02:00
//endEditBlock();
UNDO_DEBUG("---- BREAK ----");
//beginEditBlock();
}
2009-04-03 11:54:29 +02:00
void FakeVimHandler::Private::insertAutomaticIndentation(bool goingDown)
{
if (!hasConfig(ConfigAutoIndent))
return;
QTextBlock block = goingDown ? m_tc.block().previous() : m_tc.block().next();
QString text = block.text();
int pos = 0, n = text.size();
while (pos < n && text.at(pos).isSpace())
++pos;
text.truncate(pos);
// FIXME: handle 'smartindent' and 'cindent'
m_tc.insertText(text);
m_justAutoIndented = text.size();
}
bool FakeVimHandler::Private::removeAutomaticIndentation()
{
if (!hasConfig(ConfigAutoIndent) || m_justAutoIndented == 0)
return false;
m_tc.movePosition(StartOfLine, KeepAnchor);
m_tc.removeSelectedText();
m_lastInsertion.chop(m_justAutoIndented);
m_justAutoIndented = 0;
return true;
}
void FakeVimHandler::Private::handleStartOfLine()
{
if (hasConfig(ConfigStartOfLine))
moveToFirstNonBlankOnLine();
}
2009-04-08 16:05:24 +02:00
void FakeVimHandler::Private::replay(const QString &command, int n)
2009-04-06 10:58:48 +02:00
{
//qDebug() << "REPLAY: " << command;
m_inReplay = true;
for (int i = n; --i >= 0; ) {
foreach (QChar c, command) {
//qDebug() << " REPLAY: " << QString(c);
2009-04-06 10:58:48 +02:00
handleKey(c.unicode(), c.unicode(), QString(c));
}
}
2009-04-06 10:58:48 +02:00
m_inReplay = false;
}
///////////////////////////////////////////////////////////////////////
//
// FakeVimHandler
//
///////////////////////////////////////////////////////////////////////
FakeVimHandler::FakeVimHandler(QWidget *widget, QObject *parent)
: QObject(parent), d(new Private(this, widget))
{}
FakeVimHandler::~FakeVimHandler()
{
delete d;
}
bool FakeVimHandler::eventFilter(QObject *ob, QEvent *ev)
{
bool active = theFakeVimSetting(ConfigUseFakeVim)->value().toBool();
if (active && ev->type() == QEvent::KeyPress && ob == d->editor()) {
QKeyEvent *kev = static_cast<QKeyEvent *>(ev);
KEY_DEBUG("KEYPRESS" << kev->key());
EventResult res = d->handleEvent(kev);
// returning false core the app see it
//KEY_DEBUG("HANDLED CODE:" << res);
//return res != EventPassedToCore;
//return true;
return res == EventHandled;
}
if (active && ev->type() == QEvent::ShortcutOverride && ob == d->editor()) {
QKeyEvent *kev = static_cast<QKeyEvent *>(ev);
if (d->wantsOverride(kev)) {
KEY_DEBUG("OVERRIDING SHORTCUT" << kev->key());
ev->accept(); // accepting means "don't run the shortcuts"
return true;
}
KEY_DEBUG("NO SHORTCUT OVERRIDE" << kev->key());
return true;
}
return QObject::eventFilter(ob, ev);
}
void FakeVimHandler::installEventFilter()
{
d->installEventFilter();
}
void FakeVimHandler::setupWidget()
{
d->setupWidget();
}
void FakeVimHandler::restoreWidget()
{
d->restoreWidget();
}
void FakeVimHandler::handleCommand(const QString &cmd)
{
2009-04-06 10:58:48 +02:00
d->handleCommand(cmd);
}
void FakeVimHandler::setCurrentFileName(const QString &fileName)
{
d->m_currentFileName = fileName;
}
void FakeVimHandler::showBlackMessage(const QString &msg)
{
d->showBlackMessage(msg);
}
void FakeVimHandler::showRedMessage(const QString &msg)
{
d->showRedMessage(msg);
}
QWidget *FakeVimHandler::widget()
{
return d->editor();
}
2009-03-30 12:40:08 +02:00
} // namespace Internal
} // namespace FakeVim