/************************************************************************** ** ** This file is part of Qt Creator ** ** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies). ** ** Contact: http://www.qt-project.org/ ** ** ** GNU Lesser General Public License Usage ** ** 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. ** ** In addition, as a special exception, Nokia gives you certain additional ** rights. These rights are described in the Nokia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** Other Usage ** ** Alternatively, this file may be used in accordance with the terms and ** conditions contained in a signed written agreement between you and Nokia. ** ** **************************************************************************/ // // 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. // // A QTextCursor is always between characters, whereas vi's cursor is always // over a character. FakeVim interprets the QTextCursor to be over the character // to the right of the QTextCursor's position(). // // A current "region of interest" // spans between anchor(), (i.e. the character below anchor()), and // position(). The character below position() is not included // if the last movement command was exclusive (MoveExclusive). // #include "fakevimhandler.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include //#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() << << revision() << s #else # define UNDO_DEBUG(s) #endif using namespace Utils; namespace FakeVim { namespace Internal { /////////////////////////////////////////////////////////////////////// // // FakeVimHandler // /////////////////////////////////////////////////////////////////////// #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 ParagraphSeparator QChar::ParagraphSeparator #define EDITOR(s) (m_textedit ? m_textedit->s : m_plaintextedit->s) #define MetaModifier // Use HostOsInfo::controlModifier() instead #define ControlModifier // Use HostOsInfo::controlModifier() instead typedef QLatin1String _; /* Clipboard MIME types used by Vim. */ static const QString vimMimeText = "_VIM_TEXT"; static const QString vimMimeTextEncoded = "_VIMENC_TEXT"; using namespace Qt; /*! A \e Mode represents one of the basic modes of operation of FakeVim. */ enum Mode { InsertMode, ReplaceMode, CommandMode, ExMode }; /*! A \e SubMode is used for things that require one more data item and are 'nested' behind a \l Mode. */ enum SubMode { NoSubMode, ChangeSubMode, // Used for c DeleteSubMode, // Used for d FilterSubMode, // Used for ! IndentSubMode, // Used for = RegisterSubMode, // Used for " ShiftLeftSubMode, // Used for < ShiftRightSubMode, // Used for > TransformSubMode, // Used for ~/gu/gU WindowSubMode, // Used for Ctrl-w YankSubMode, // Used for y ZSubMode, // Used for z CapitalZSubMode, // Used for Z ReplaceSubMode, // Used for r OpenSquareSubMode, // Used for [ CloseSquareSubMode // Used for ] }; /*! A \e SubSubMode is used for things that require one more data item and are 'nested' behind a \l SubMode. */ enum SubSubMode { NoSubSubMode, FtSubSubMode, // Used for f, F, t, T. MarkSubSubMode, // Used for m. BackTickSubSubMode, // Used for `. TickSubSubMode, // Used for '. InvertCaseSubSubMode, // Used for ~. DownCaseSubSubMode, // Used for gu. UpCaseSubSubMode, // Used for gU. TextObjectSubSubMode, // Used for thing like iw, aW, as etc. SearchSubSubMode }; enum VisualMode { NoVisualMode, VisualCharMode, VisualLineMode, VisualBlockMode }; enum MoveType { MoveExclusive, MoveInclusive, MoveLineWise }; /*! \enum RangeMode The \e RangeMode serves as a means to define how the "Range" between the \l cursor and the \l anchor position is to be interpreted. \value RangeCharMode Entered by pressing \key v. The range includes all characters between cursor and anchor. \value RangeLineMode Entered by pressing \key V. The range includes all lines between the line of the cursor and the line of the anchor. \value RangeLineModeExclusice Like \l RangeLineMode, but keeps one newline when deleting. \value RangeBlockMode Entered by pressing \key Ctrl-v. The range includes all characters with line and column coordinates between line and columns coordinates of cursor and anchor. \value RangeBlockAndTailMode Like \l RangeBlockMode, but also includes all characters in the affected lines up to the end of these lines. */ enum EventResult { EventHandled, EventUnhandled, EventPassedToCore }; typedef QHash Marks; struct State { State() : revision(-1), position(-1), line(-1), marks() {} State(int revision, int position, int line, const Marks &marks) : revision(revision), position(position), line(line), marks(marks) {} int revision; int position; int line; Marks marks; }; struct Column { Column(int p, int l) : physical(p), logical(l) {} int physical; // Number of characters in the data. int logical; // Column on screen. }; QDebug operator<<(QDebug ts, const Column &col) { return ts << "(p: " << col.physical << ", l: " << col.logical << ")"; } 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) : contents(c), rangemode(RangeCharMode) {} Register(const QString &c, RangeMode m) : contents(c), rangemode(m) {} QString contents; RangeMode rangemode; }; QDebug operator<<(QDebug ts, const Register ®) { return ts << reg.contents; } struct SearchData { SearchData() { forward = true; highlightMatches = true; } QString needle; bool forward; bool highlightMatches; }; // If string begins with given prefix remove it with trailing spaces and return true. static bool eatString(const QString &prefix, QString *str) { if (!str->startsWith(prefix)) return false; *str = str->mid(prefix.size()).trimmed(); return true; } static QRegExp vimPatternToQtPattern(QString needle, bool smartcase) { /* Transformations (Vim regexp -> QRegExp): * \a -> [A-Za-z] * \A -> [^A-Za-z] * \h -> [A-Za-z_] * \H -> [^A-Za-z_] * \l -> [a-z] * \L -> [^a-z] * \o -> [0-7] * \O -> [^0-7] * \u -> [A-Z] * \U -> [^A-Z] * \x -> [0-9A-Fa-f] * \X -> [^0-9A-Fa-f] * * \< -> \b * \> -> \b * [] -> \[\] * \= -> ? * * (...) <-> \(...\) * {...} <-> \{...\} * | <-> \| * ? <-> \? * + <-> \+ * \{...} -> {...} * * \c - set ignorecase for rest * \C - set noignorecase for rest */ bool ignorecase = smartcase && !needle.contains(QRegExp("[A-Z]")); QString pattern; pattern.reserve(2 * needle.size()); bool escape = false; bool brace = false; bool curly = false; foreach (const QChar &c, needle) { if (brace) { brace = false; if (c == ']') { pattern.append(_("\\[\\]")); continue; } else { pattern.append('['); } } if (QString("(){}+|?").indexOf(c) != -1) { if (c == '{') { curly = escape; } else if (c == '}' && curly) { curly = false; escape = true; } if (escape) escape = false; else pattern.append('\\'); pattern.append(c); } else if (escape) { // escape expression escape = false; if (c == '<' || c == '>') pattern.append(_("\\b")); else if (c == 'a') pattern.append(_("[a-zA-Z]")); else if (c == 'A') pattern.append(_("[^a-zA-Z]")); else if (c == 'h') pattern.append(_("[A-Za-z_]")); else if (c == 'H') pattern.append(_("[^A-Za-z_]")); else if (c == 'c' || c == 'C') ignorecase = (c == 'c'); else if (c == 'l') pattern.append(_("[a-z]")); else if (c == 'L') pattern.append(_("[^a-z]")); else if (c == 'o') pattern.append(_("[0-7]")); else if (c == 'O') pattern.append(_("[^0-7]")); else if (c == 'u') pattern.append(_("[A-Z]")); else if (c == 'U') pattern.append(_("[^A-Z]")); else if (c == 'x') pattern.append(_("[0-9A-Fa-f]")); else if (c == 'X') pattern.append(_("[^0-9A-Fa-f]")); else if (c == '=') pattern.append(_("?")); else pattern.append('\\' + c); } else { // unescaped expression if (c == '\\') escape = true; else if (c == '[') brace = true; else if (c.isLetter() && ignorecase) pattern.append('[' + c.toLower() + c.toUpper() + ']'); else pattern.append(c); } } if (escape) pattern.append('\\'); else if (brace) pattern.append('['); return QRegExp(pattern); } static void setClipboardData(const QString &content, RangeMode mode, QClipboard::Mode clipboardMode) { QClipboard *clipboard = QApplication::clipboard(); char vimRangeMode = mode; QByteArray bytes1; bytes1.append(vimRangeMode); bytes1.append(content.toUtf8()); QByteArray bytes2; bytes2.append(vimRangeMode); bytes2.append("utf-8"); bytes2.append('\0'); bytes2.append(content.toUtf8()); QMimeData *data = new QMimeData; data->setText(content); data->setData(vimMimeText, bytes1); data->setData(vimMimeTextEncoded, bytes2); clipboard->setMimeData(data, clipboardMode); } Range::Range() : beginPos(-1), endPos(-1), rangemode(RangeCharMode) {} Range::Range(int b, int e, RangeMode m) : beginPos(qMin(b, e)), endPos(qMax(b, e)), rangemode(m) {} QString Range::toString() const { return QString("%1-%2 (mode: %3)").arg(beginPos).arg(endPos) .arg(rangemode); } QDebug operator<<(QDebug ts, const Range &range) { return ts << '[' << range.beginPos << ',' << range.endPos << ']'; } ExCommand::ExCommand(const QString &c, const QString &a, const Range &r) : cmd(c), hasBang(false), args(a), range(r), count(1) {} bool ExCommand::matches(const QString &min, const QString &full) const { return cmd.startsWith(min) && full.startsWith(cmd); } void ExCommand::setContentsFromLine(const QString &line) { // split command to subcommands subCommands = line.split('|'); } bool ExCommand::nextSubcommand() { cmd.clear(); while (cmd.isEmpty() && !subCommands.isEmpty()) { cmd = subCommands.takeFirst().trimmed(); cmd.remove(QRegExp("^:+\\s*")); // remove leading colons hasBang = cmd.endsWith('!'); if (hasBang) cmd.chop(1); // command arguments args = cmd.section(QRegExp("\\s+"), 1); if (!args.isEmpty()) cmd = cmd.left(cmd.size() - args.size()).trimmed(); } return !cmd.isEmpty(); } QString ExCommand::printCommand() const { return subCommands.isEmpty() ? cmd : cmd + "|" + subCommands.join("|"); } QDebug operator<<(QDebug ts, const ExCommand &cmd) { return ts << cmd.cmd << ' ' << cmd.args << ' ' << cmd.range; } QDebug operator<<(QDebug ts, const QList &sels) { foreach (const QTextEdit::ExtraSelection &sel, sels) ts << "SEL: " << sel.cursor.anchor() << sel.cursor.position(); return ts; } QString quoteUnprintable(const QString &ba) { QString res; for (int i = 0, n = ba.size(); i != n; ++i) { const QChar c = ba.at(i); const int cc = c.unicode(); if (c.isPrint()) res += c; else if (cc == '\n') res += _(""); else res += QString("\\x%1").arg(c.unicode(), 2, 16, QLatin1Char('0')); } return res; } static bool startsWithWhitespace(const QString &str, int col) { QTC_ASSERT(str.size() >= col, return false); for (int i = 0; i < col; ++i) { uint u = str.at(i).unicode(); if (u != ' ' && u != '\t') return false; } return true; } inline QString msgMarkNotSet(const QString &text) { return FakeVimHandler::tr("Mark '%1' not set").arg(text); } class Input { public: // Remove some extra "information" on Mac. static int cleanModifier(int m) { return m & ~Qt::KeypadModifier; } Input() : m_key(0), m_xkey(0), m_modifiers(0) {} explicit Input(QChar x) : m_key(x.unicode()), m_xkey(x.unicode()), m_modifiers(0), m_text(x) { if (x.isUpper()) m_modifiers = Qt::ShiftModifier; else if (x.isLower()) m_key = x.toUpper().unicode(); } Input(int k, int m, const QString &t) : m_key(k), m_modifiers(cleanModifier(m)), m_text(t) { // On Mac, QKeyEvent::text() returns non-empty strings for // cursor keys. This breaks some of the logic later on // relying on text() being empty for "special" keys. // FIXME: Check the real conditions. if (m_text.size() == 1 && m_text.at(0).unicode() < ' ') m_text.clear(); // m_xkey is only a cache. m_xkey = (m_text.size() == 1 ? m_text.at(0).unicode() : m_key); } bool isValid() const { return m_key != 0 || !m_text.isNull(); } bool isDigit() const { return m_xkey >= '0' && m_xkey <= '9'; } bool isKey(int c) const { return !m_modifiers && m_key == c; } bool isBackspace() const { return m_key == Key_Backspace || isControl('h'); } bool isReturn() const { return m_key == Key_Return || m_key == Key_Enter; } bool isEscape() const { return isKey(Key_Escape) || isKey(27) || isControl('c') || isControl(Key_BracketLeft); } bool is(int c) const { return m_xkey == c && m_modifiers != int(HostOsInfo::controlModifier()); } bool isControl(int c) const { return m_modifiers == int(HostOsInfo::controlModifier()) && (m_xkey == c || m_xkey + 32 == c || m_xkey + 64 == c || m_xkey + 96 == c); } bool isShift(int c) const { return m_modifiers == Qt::ShiftModifier && m_xkey == c; } bool operator==(const Input &a) const { return m_key == a.m_key && m_modifiers == a.m_modifiers && m_text == a.m_text; } bool operator!=(const Input &a) const { return !operator==(a); } bool operator<(const Input &a) const { return m_key < a.m_key || m_modifiers < a.m_modifiers || m_text < a.m_text; } QString text() const { return m_text; } QChar asChar() const { return (m_text.size() == 1 ? m_text.at(0) : QChar()); } int key() const { return m_key; } QChar raw() const { if (m_key == Key_Tab) return '\t'; if (m_key == Key_Return) return '\n'; return m_key; } QDebug dump(QDebug ts) const { return ts << m_key << '-' << m_modifiers << '-' << quoteUnprintable(m_text); } private: int m_key; int m_xkey; int m_modifiers; QString m_text; }; // mapping to (do nothing) static const Input Nop(-1, -1, QString()); QDebug operator<<(QDebug ts, const Input &input) { return input.dump(ts); } class Inputs : public QVector { public: Inputs() : m_noremap(true), m_silent(false) {} explicit Inputs(const QString &str, bool noremap = true, bool silent = false) : m_noremap(noremap), m_silent(silent) { parseFrom(str); } bool noremap() const { return m_noremap; } bool silent() const { return m_silent; } private: void parseFrom(const QString &str); bool m_noremap; bool m_silent; }; static QMap vimKeyNames() { QMap k; // FIXME: Should be value of mapleader. k.insert("LEADER", Key_Backslash); k.insert("SPACE", Key_Space); k.insert("TAB", Key_Tab); k.insert("NL", Key_Return); k.insert("NEWLINE", Key_Return); k.insert("LINEFEED", Key_Return); k.insert("LF", Key_Return); k.insert("CR", Key_Return); k.insert("RETURN", Key_Return); k.insert("ENTER", Key_Return); k.insert("BS", Key_Backspace); k.insert("BACKSPACE", Key_Backspace); k.insert("ESC", Key_Escape); k.insert("BAR", Key_Bar); k.insert("BSLASH", Key_Backslash); k.insert("DEL", Key_Delete); k.insert("DELETE", Key_Delete); k.insert("KDEL", Key_Delete); k.insert("UP", Key_Up); k.insert("DOWN", Key_Down); k.insert("LEFT", Key_Left); k.insert("RIGHT", Key_Right); k.insert("F1", Key_F1); k.insert("F2", Key_F2); k.insert("F3", Key_F3); k.insert("F4", Key_F4); k.insert("F5", Key_F5); k.insert("F6", Key_F6); k.insert("F7", Key_F7); k.insert("F8", Key_F8); k.insert("F9", Key_F9); k.insert("F10", Key_F10); k.insert("F11", Key_F11); k.insert("F12", Key_F12); k.insert("F13", Key_F13); k.insert("F14", Key_F14); k.insert("F15", Key_F15); k.insert("F16", Key_F16); k.insert("F17", Key_F17); k.insert("F18", Key_F18); k.insert("F19", Key_F19); k.insert("F20", Key_F20); k.insert("F21", Key_F21); k.insert("F22", Key_F22); k.insert("F23", Key_F23); k.insert("F24", Key_F24); k.insert("F25", Key_F25); k.insert("F26", Key_F26); k.insert("F27", Key_F27); k.insert("F28", Key_F28); k.insert("F29", Key_F29); k.insert("F30", Key_F30); k.insert("F31", Key_F31); k.insert("F32", Key_F32); k.insert("F33", Key_F33); k.insert("F34", Key_F34); k.insert("F35", Key_F35); k.insert("INSERT", Key_Insert); k.insert("INS", Key_Insert); k.insert("KINSERT", Key_Insert); k.insert("HOME", Key_Home); k.insert("END", Key_End); k.insert("PAGEUP", Key_PageUp); k.insert("PAGEDOWN", Key_PageDown); k.insert("KPLUS", Key_Plus); k.insert("KMINUS", Key_Minus); k.insert("KDIVIDE", Key_Slash); k.insert("KMULTIPLY", Key_Asterisk); k.insert("KENTER", Key_Enter); k.insert("KPOINT", Key_Period); return k; } static Input parseVimKeyName(const QString &keyName) { if (keyName.length() == 1) return Input(keyName.at(0)); const QStringList keys = keyName.split('-'); const int len = keys.length(); if (len == 1 && keys.at(0) == _("nop")) return Nop; int mods = NoModifier; for (int i = 0; i < len - 1; ++i) { const QString &key = keys[i].toUpper(); if (key == "S") mods |= Qt::ShiftModifier; else if (key == "C") mods |= HostOsInfo::controlModifier(); else return Input(); } if (!keys.isEmpty()) { const QString key = keys.last(); if (key.length() == 1) { // simple character QChar c = key.at(0).toUpper(); return Input(c.unicode(), mods, QString(c)); } // find key name static const QMap k = vimKeyNames(); QMap::ConstIterator it = k.constFind(key.toUpper()); if (it != k.end()) return Input(*it, mods, *it <= 0x7f ? QString(QChar::fromLatin1(*it)) : QString("")); } return Input(); } void Inputs::parseFrom(const QString &str) { const int n = str.size(); for (int i = 0; i < n; ++i) { uint c = str.at(i).unicode(); if (c == '<') { int j = str.indexOf('>', i); Input input; if (j != -1) input = parseVimKeyName(str.mid(i+1, j - i - 1)); if (input.isValid()) { append(input); i = j; } else { append(Input(QLatin1Char(c))); } } else { append(Input(QLatin1Char(c))); } } } class History { public: History() : m_items(QString()), m_index(0) {} void append(const QString &item); const QString &move(const QStringRef &prefix, int skip); const QString ¤t() const { return m_items[m_index]; } const QStringList &items() const { return m_items; } void restart() { m_index = m_items.size() - 1; } private: // Last item is always empty or current search prefix. QStringList m_items; int m_index; }; void History::append(const QString &item) { if (item.isEmpty()) return; m_items.pop_back(); m_items.removeAll(item); m_items << item << QString(); restart(); } const QString &History::move(const QStringRef &prefix, int skip) { if (!current().startsWith(prefix)) restart(); if (m_items.last() != prefix) m_items[m_items.size() - 1] = prefix.toString(); int i = m_index + skip; if (!prefix.isEmpty()) for (; i >= 0 && i < m_items.size() && !m_items[i].startsWith(prefix); i += skip); if (i >= 0 && i < m_items.size()) m_index = i; return current(); } // Command line buffer with prompt (i.e. :, / or ? characters), text contents and cursor position. class CommandBuffer { public: CommandBuffer() : m_pos(0), m_userPos(0), m_historyAutoSave(true) {} void setPrompt(const QChar &prompt) { m_prompt = prompt; } void setContents(const QString &s) { m_buffer = s; m_pos = s.size(); } void setContents(const QString &s, int pos) { m_buffer = s; m_pos = m_userPos = pos; } QStringRef userContents() const { return m_buffer.leftRef(m_userPos); } const QChar &prompt() const { return m_prompt; } const QString &contents() const { return m_buffer; } bool isEmpty() const { return m_buffer.isEmpty(); } int cursorPos() const { return m_pos; } void insertChar(QChar c) { m_buffer.insert(m_pos++, c); m_userPos = m_pos; } void insertText(const QString &s) { m_buffer.insert(m_pos, s); m_userPos = m_pos = m_pos + s.size(); } void deleteChar() { if (m_pos) m_buffer.remove(--m_pos, 1); m_userPos = m_pos; } void moveLeft() { if (m_pos) m_userPos = --m_pos; } void moveRight() { if (m_pos < m_buffer.size()) m_userPos = ++m_pos; } void moveStart() { m_userPos = m_pos = 0; } void moveEnd() { m_userPos = m_pos = m_buffer.size(); } void setHistoryAutoSave(bool autoSave) { m_historyAutoSave = autoSave; } void historyDown() { setContents(m_history.move(userContents(), 1)); } void historyUp() { setContents(m_history.move(userContents(), -1)); } const QStringList &historyItems() const { return m_history.items(); } void historyPush(const QString &item = QString()) { m_history.append(item.isNull() ? contents() : item); } void clear() { if (m_historyAutoSave) historyPush(); m_buffer.clear(); m_userPos = m_pos = 0; } QString display() const { QString msg(m_prompt); for (int i = 0; i != m_buffer.size(); ++i) { const QChar c = m_buffer.at(i); if (c.unicode() < 32) { msg += '^'; msg += QLatin1Char(c.unicode() + 64); } else { msg += c; } } return msg; } bool handleInput(const Input &input) { if (input.isKey(Key_Left)) { moveLeft(); } else if (input.isKey(Key_Right)) { moveRight(); } else if (input.isKey(Key_Home)) { moveStart(); } else if (input.isKey(Key_End)) { moveEnd(); } else if (input.isKey(Key_Delete)) { if (m_pos < m_buffer.size()) m_buffer.remove(m_pos, 1); else deleteChar(); } else if (!input.text().isEmpty()) { insertText(input.text()); } else { return false; } return true; } private: QString m_buffer; QChar m_prompt; History m_history; int m_pos; int m_userPos; // last position of inserted text (for retrieving history items) bool m_historyAutoSave; // store items to history on clear()? }; // Mappings for a specific mode (trie structure) class ModeMapping : public QMap { public: const Inputs &value() const { return m_value; } void setValue(const Inputs &value) { m_value = value; } private: Inputs m_value; }; // Mappings for all modes typedef QHash Mappings; // Iterator for mappings class MappingsIterator : public QVector { public: MappingsIterator(Mappings *mappings, char mode = -1, const Inputs &inputs = Inputs()) : m_parent(mappings) { reset(mode); walk(inputs); } // Reset iterator state. Keep previous mode if 0. void reset(char mode = 0) { clear(); m_lastValid = -1; m_invalidInputCount = 0; if (mode != 0) { m_mode = mode; if (mode != -1) m_modeMapping = m_parent->find(mode); } } bool isValid() const { return !empty(); } // Return true if mapping can be extended. bool canExtend() const { return isValid() && !last()->empty(); } // Return true if this mapping can be used. bool isComplete() const { return m_lastValid != -1; } // Return size of current map. int mapLength() const { return m_lastValid + 1; } int invalidInputCount() const { return m_invalidInputCount; } bool walk(const Input &input) { if (m_modeMapping == m_parent->end()) return false; if (!input.isValid()) { m_invalidInputCount += 1; return true; } ModeMapping::Iterator it; if (isValid()) { it = last()->find(input); if (it == last()->end()) return false; } else { it = m_modeMapping->find(input); if (it == m_modeMapping->end()) return false; } if (!it->value().isEmpty()) m_lastValid = size(); append(it); return true; } bool walk(const Inputs &inputs) { foreach (const Input &input, inputs) { if (!walk(input)) return false; } return true; } // Return current mapped value. Iterator must be valid. const Inputs &inputs() const { return at(m_lastValid)->value(); } void remove() { if (isValid()) { if (canExtend()) { last()->setValue(Inputs()); } else { if (size() > 1) { while (last()->empty()) { at(size() - 2)->erase(last()); pop_back(); if (size() == 1 || !last()->value().isEmpty()) break; } if (last()->empty() && last()->value().isEmpty()) m_modeMapping->erase(last()); } else if (last()->empty() && !last()->value().isEmpty()) { m_modeMapping->erase(last()); } } } } void setInputs(const Inputs &key, const Inputs &inputs, bool unique = false) { ModeMapping *current = &(*m_parent)[m_mode]; foreach (const Input &input, key) current = &(*current)[input]; if (!unique || current->value().isEmpty()) current->setValue(inputs); } private: Mappings *m_parent; Mappings::Iterator m_modeMapping; int m_lastValid; int m_invalidInputCount; char m_mode; }; // state of current mapping struct MappingState { MappingState() : maxMapDepth(1000), noremap(false), silent(false) {} MappingState(int depth, bool noremap, bool silent) : maxMapDepth(depth), noremap(noremap), silent(silent) {} int maxMapDepth; bool noremap; bool silent; }; class FakeVimHandler::Private : public QObject { Q_OBJECT public: Private(FakeVimHandler *parent, QWidget *widget); EventResult handleEvent(QKeyEvent *ev); bool wantsOverride(QKeyEvent *ev); void handleCommand(const QString &cmd); // Sets m_tc + handleExCommand void handleExCommand(const QString &cmd); void installEventFilter(); void passShortcuts(bool enable); void setupWidget(); void restoreWidget(int tabSize); friend class FakeVimHandler; void init(); EventResult handleKey(const Input &input); EventResult handleDefaultKey(const Input &input); Q_SLOT void handleMappedKeys(); EventResult handleInsertMode(const Input &); EventResult handleReplaceMode(const Input &); EventResult handleCommandMode(const Input &); EventResult handleCommandMode1(const Input &); EventResult handleCommandMode2(const Input &); EventResult handleRegisterMode(const Input &); EventResult handleExMode(const Input &); EventResult handleOpenSquareSubMode(const Input &); EventResult handleCloseSquareSubMode(const Input &); EventResult handleSearchSubSubMode(const Input &); EventResult handleCommandSubSubMode(const Input &); void finishMovement(const QString &dotCommand = QString()); void finishMovement(const QString &dotCommand, int count); void resetCommandMode(); void search(const SearchData &sd, bool showMessages = true); void searchNext(bool forward = true); void searchBalanced(bool forward, QChar needle, QChar other); void highlightMatches(const QString &needle); void stopIncrementalFind(); void updateFind(bool isComplete); 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(); } QTextBlock block() const { return cursor().block(); } int leftDist() const { return position() - block().position(); } int rightDist() const { return block().length() - leftDist() - 1; } bool atBlockStart() const { return cursor().atBlockStart(); } bool atBlockEnd() const { return cursor().atBlockEnd(); } bool atEndOfLine() const { return atBlockEnd() && block().length() > 1; } bool atDocumentEnd() const { return cursor().atEnd(); } bool atDocumentStart() const { return cursor().atStart(); } bool atEmptyLine(const QTextCursor &tc = QTextCursor()) const; bool atBoundary(bool end, bool simple, bool onlyWords = false, const QTextCursor &tc = QTextCursor()) const; bool atWordBoundary(bool end, bool simple, const QTextCursor &tc = QTextCursor()) const; bool atWordStart(bool simple, const QTextCursor &tc = QTextCursor()) const; bool atWordEnd(bool simple, const QTextCursor &tc = QTextCursor()) const; bool isFirstNonBlankOnLine(int pos); int lastPositionInDocument() const; // Returns last valid position 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 QString lineContents(int line) const; // 1 based line void setLineContents(int line, const QString &contents); // 1 based line int blockBoundary(const QString &left, const QString &right, bool end, int count) const; // end or start position of current code block int linesOnScreen() const; int columnsOnScreen() const; int linesInDocument() const; // The following use all zero-based counting. int cursorLineOnScreen() const; int cursorLine() const; int physicalCursorColumn() const; // as stored in the data int logicalCursorColumn() const; // as visible on screen int physicalToLogicalColumn(int physical, const QString &text) const; int logicalToPhysicalColumn(int logical, const QString &text) const; Column cursorColumn() const; // as visible on screen int firstVisibleLine() const; void scrollToLine(int line); void scrollUp(int count); void scrollDown(int count) { scrollUp(-count); } CursorPosition cursorPosition() const { return CursorPosition(position(), firstVisibleLine()); } void setCursorPosition(const CursorPosition &p) { setPosition(p.position); scrollToLine(p.scrollLine); } // Helper functions for indenting/ bool isElectricCharacter(QChar c) const; void indentSelectedText(QChar lastTyped = QChar()); void indentText(const Range &range, QChar lastTyped = QChar()); void shiftRegionLeft(int repeat = 1); void shiftRegionRight(int repeat = 1); void moveToFirstNonBlankOnLine(); void moveToFirstNonBlankOnLine(QTextCursor *tc); void moveToTargetColumn(); void setTargetColumn() { m_targetColumn = logicalCursorColumn(); m_visualTargetColumn = m_targetColumn; //qDebug() << "TARGET: " << m_targetColumn; } void moveToMatchingParanthesis(); void moveToBoundary(bool simple, bool forward = true); void moveToNextBoundary(bool end, int count, bool simple, bool forward); void moveToNextBoundaryStart(int count, bool simple, bool forward = true); void moveToNextBoundaryEnd(int count, bool simple, bool forward = true); void moveToBoundaryStart(int count, bool simple, bool forward = true); void moveToBoundaryEnd(int count, bool simple, bool forward = true); void moveToNextWord(bool end, int count, bool simple, bool forward, bool emptyLines); void moveToNextWordStart(int count, bool simple, bool forward = true, bool emptyLines = true); void moveToNextWordEnd(int count, bool simple, bool forward = true, bool emptyLines = true); void moveToWordStart(int count, bool simple, bool forward = true, bool emptyLines = true); void moveToWordEnd(int count, bool simple, bool forward = true, bool emptyLines = true); // Convenience wrappers to reduce line noise. void moveToStartOfLine(); void moveToEndOfLine(); void moveBehindEndOfLine(); void moveUp(int n = 1) { moveDown(-n); } void moveDown(int n = 1); void dump(const char *msg) const { qDebug() << msg << "POS: " << anchor() << position() << "EXT: " << m_oldExternalAnchor << m_oldExternalPosition << "INT: " << m_oldInternalAnchor << m_oldInternalPosition << "VISUAL: " << m_visualMode; } void moveRight(int n = 1) { //dump("RIGHT 1"); QTextCursor tc = cursor(); tc.movePosition(Right, KeepAnchor, n); setCursor(tc); //dump("RIGHT 2"); } void moveLeft(int n = 1) { QTextCursor tc = cursor(); tc.movePosition(Left, KeepAnchor, n); setCursor(tc); } void setAnchor() { QTextCursor tc = cursor(); tc.setPosition(tc.position(), MoveAnchor); setCursor(tc); } void setAnchor(int position) { QTextCursor tc = cursor(); tc.setPosition(tc.anchor(), MoveAnchor); tc.setPosition(position, KeepAnchor); setCursor(tc); } void setPosition(int position) { QTextCursor tc = cursor(); tc.setPosition(position, KeepAnchor); setCursor(tc); } void setAnchorAndPosition(int anchor, int position) { QTextCursor tc = cursor(); tc.setPosition(anchor, MoveAnchor); tc.setPosition(position, KeepAnchor); setCursor(tc); } QTextCursor cursor() const { return EDITOR(textCursor()); } void setCursor(const QTextCursor &tc) { EDITOR(setTextCursor(tc)); } bool handleFfTt(QString key); // Helper function for handleExCommand returning 1 based line index. int readLineCode(QString &cmd); void enterInsertMode(); void enterReplaceMode(); void enterCommandMode(); void enterExMode(); void showMessage(MessageLevel level, const QString &msg); void clearMessage() { showMessage(MessageInfo, QString()); } void notImplementedYet(); void updateMiniBuffer(); void updateSelection(); void updateHighlights(); void updateCursorShape(); QWidget *editor() const; QTextDocument *document() const { return EDITOR(document()); } QChar characterAtCursor() const { return document()->characterAt(position()); } void joinPreviousEditBlock() { UNDO_DEBUG("JOIN"); if (m_breakEditBlock) beginEditBlock(); else cursor().joinPreviousEditBlock(); } void beginEditBlock() { UNDO_DEBUG("BEGIN EDIT BLOCK"); cursor().beginEditBlock(); setUndoPosition(false); m_breakEditBlock = false; } void endEditBlock() { UNDO_DEBUG("END EDIT BLOCK"); cursor().endEditBlock(); } void breakEditBlock() { m_breakEditBlock = true; } bool isVisualMode() const { return m_visualMode != NoVisualMode; } bool isNoVisualMode() const { return m_visualMode == NoVisualMode; } bool isVisualCharMode() const { return m_visualMode == VisualCharMode; } bool isVisualLineMode() const { return m_visualMode == VisualLineMode; } bool isVisualBlockMode() const { return m_visualMode == VisualBlockMode; } char currentModeCode() const; void updateEditor(); void selectTextObject(bool simple, bool inner); void selectWordTextObject(bool inner); void selectWORDTextObject(bool inner); void selectSentenceTextObject(bool inner); void selectParagraphTextObject(bool inner); void selectBlockTextObject(bool inner, char left, char right); void changeNumberTextObject(bool doIncrement); void selectQuotedStringTextObject(bool inner, const QString "e); Q_SLOT void importSelection(); void exportSelection(); void insertInInsertMode(const QString &text); 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 bool m_firstKeyPending; SubMode m_submode; SubSubMode m_subsubmode; Input m_subsubdata; int m_oldExternalPosition; // copy from last event to check for external changes int m_oldExternalAnchor; int m_oldInternalPosition; // copy from last event to check for external changes int m_oldInternalAnchor; int m_oldPosition; // FIXME: Merge with above. int m_register; QString m_mvcount; QString m_opcount; MoveType m_movetype; RangeMode m_rangemode; int m_visualInsertCount; bool m_fakeEnd; bool m_anchorPastEnd; bool m_positionPastEnd; // '$' & 'l' in visual mode can move past eol int m_gflag; // whether current command started with 'g' QString m_currentFileName; QString m_lastSearch; bool m_lastSearchForward; bool m_findPending; int m_findStartPosition; QString m_lastInsertion; QString m_lastDeletion; bool m_breakEditBlock; int anchor() const { return cursor().anchor(); } int position() const { return cursor().position(); } struct TransformationData { TransformationData(const QString &s, const QVariant &d) : from(s), extraData(d) {} QString from; QString to; QVariant extraData; }; typedef void (Private::*Transformation)(TransformationData *td); void transformText(const Range &range, Transformation transformation, const QVariant &extraData = QVariant()); void insertText(const Register ®); void removeText(const Range &range); void removeTransform(TransformationData *td); void invertCase(const Range &range); void invertCaseTransform(TransformationData *td); void upCase(const Range &range); void upCaseTransform(TransformationData *td); void downCase(const Range &range); void downCaseTransform(TransformationData *td); void replaceText(const Range &range, const QString &str); void replaceByStringTransform(TransformationData *td); void replaceByCharTransform(TransformationData *td); QString selectText(const Range &range) const; void setCurrentRange(const Range &range); Range currentRange() const { return Range(position(), anchor(), m_rangemode); } Range rangeFromCurrentLine() const; void yankText(const Range &range, int toregister = '"'); void pasteText(bool afterCursor); // undo handling int revision() const { return document()->availableUndoSteps(); } void undo(); void redo(); void setUndoPosition(bool overwrite = true); // revision -> state QStack m_undo; QStack m_redo; // extra data for '.' void replay(const QString &text, int count); void setDotCommand(const QString &cmd) { g.dotCommand = cmd; } void setDotCommand(const QString &cmd, int n) { g.dotCommand = cmd.arg(n); } // extra data for ';' QString m_semicolonCount; Input m_semicolonType; // 'f', 'F', 't', 'T' QString m_semicolonKey; // visual modes void toggleVisualMode(VisualMode visualMode); void leaveVisualMode(); VisualMode m_visualMode; VisualMode m_oldVisualMode; // marks as lines int mark(int code) const; void setMark(int code, int position); typedef QHashIterator MarksIterator; Marks m_marks; // vi style configuration 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); } int m_targetColumn; // -1 if past end of line int m_visualTargetColumn; // 'l' can move past eol in visual mode only // auto-indent QString tabExpand(int len) const; Column indentation(const QString &line) const; void insertAutomaticIndentation(bool goingDown); bool removeAutomaticIndentation(); // true if something removed // number of autoindented characters int m_justAutoIndented; void handleStartOfLine(); // register handling QString registerContents(int reg) const; void setRegister(int reg, const QString &contents, RangeMode mode); RangeMode registerRangeMode(int reg) const; void getRegisterType(int reg, bool *isClipboard, bool *isSelection) const; void recordJump(); void jump(int distance); QStack m_jumpListUndo; QStack m_jumpListRedo; int m_lastChangePosition; QList m_extraSelections; QTextCursor m_searchCursor; int m_searchStartPosition; int m_searchFromScreenLine; QString m_oldNeedle; QString m_lastSubstituteFlags; QRegExp m_lastSubstitutePattern; QString m_lastSubstituteReplacement; QTextCursor m_lastSelectionCursor; VisualMode m_lastSelectionMode; bool handleExCommandHelper(ExCommand &cmd); // Returns success. bool handleExPluginCommand(const ExCommand &cmd); // Handled by plugin? bool handleExBangCommand(const ExCommand &cmd); bool handleExDeleteCommand(const ExCommand &cmd); bool handleExGotoCommand(const ExCommand &cmd); bool handleExHistoryCommand(const ExCommand &cmd); bool handleExRegisterCommand(const ExCommand &cmd); bool handleExMapCommand(const ExCommand &cmd); bool handleExNohlsearchCommand(const ExCommand &cmd); bool handleExNormalCommand(const ExCommand &cmd); bool handleExReadCommand(const ExCommand &cmd); bool handleExRedoCommand(const ExCommand &cmd); bool handleExUndoCommand(const ExCommand &cmd); bool handleExSetCommand(const ExCommand &cmd); bool handleExShiftCommand(const ExCommand &cmd); bool handleExSourceCommand(const ExCommand &cmd); bool handleExSubstituteCommand(const ExCommand &cmd); bool handleExWriteCommand(const ExCommand &cmd); bool handleExEchoCommand(const ExCommand &cmd); void timerEvent(QTimerEvent *ev); void setupCharClass(); int charClass(QChar c, bool simple) const; signed char m_charClass[256]; bool m_ctrlVActive; void miniBufferTextEdited(const QString &text, int cursorPos); static struct GlobalData { GlobalData() : mappings(), currentMap(&mappings), inputTimer(-1), currentMessageLevel(MessageInfo) { // default mapping state - shouldn't be removed mapStates << MappingState(); commandBuffer.setPrompt(':'); } // Repetition. QString dotCommand; QHash registers; // All mappings. Mappings mappings; // Input. Inputs pendingInput; MappingsIterator currentMap; int inputTimer; int lastMapCode; QStack mapStates; // Command line buffers. CommandBuffer commandBuffer; CommandBuffer searchBuffer; // Current mini buffer message. QString currentMessage; MessageLevel currentMessageLevel; } g; }; FakeVimHandler::Private::GlobalData FakeVimHandler::Private::g; FakeVimHandler::Private::Private(FakeVimHandler *parent, QWidget *widget) { //static PythonHighlighterRules pythonRules; q = parent; m_textedit = qobject_cast(widget); m_plaintextedit = qobject_cast(widget); //new Highlighter(document(), &pythonRules); init(); } void FakeVimHandler::Private::init() { m_mode = CommandMode; m_submode = NoSubMode; m_subsubmode = NoSubSubMode; m_passing = false; m_firstKeyPending = false; m_findPending = false; m_findStartPosition = -1; m_fakeEnd = false; m_positionPastEnd = false; m_anchorPastEnd = false; m_lastSearchForward = true; m_register = '"'; m_gflag = false; m_visualMode = NoVisualMode; m_oldVisualMode = NoVisualMode; m_targetColumn = 0; m_visualTargetColumn = 0; m_movetype = MoveInclusive; m_justAutoIndented = 0; m_rangemode = RangeCharMode; m_ctrlVActive = false; m_oldInternalAnchor = -1; m_oldInternalPosition = -1; m_oldExternalAnchor = -1; m_oldExternalPosition = -1; m_oldPosition = -1; m_lastChangePosition = -1; m_breakEditBlock = false; m_searchStartPosition = 0; m_searchFromScreenLine = 0; setupCharClass(); } 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) { if (m_subsubmode == SearchSubSubMode) return true; // Not sure this feels good. People often hit Esc several times. if (isNoVisualMode() && m_mode == CommandMode && m_submode == NoSubMode && m_opcount.isEmpty() && m_mvcount.isEmpty()) return false; return true; } // We are interested in overriding most Ctrl key combinations. if (mods == int(HostOsInfo::controlModifier()) && !config(ConfigPassControlKey).toBool() && ((key >= Key_A && key <= Key_Z && key != Key_K) || key == Key_BracketLeft || key == Key_BracketRight)) { // 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) { const int key = ev->key(); 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) { passShortcuts(false); KEY_DEBUG("PASSING PLAIN KEY..." << ev->key() << ev->text()); //if (input.is(',')) { // use ',,' to leave, too. // qDebug() << "FINISHED..."; // return EventHandled; //} m_passing = false; updateMiniBuffer(); KEY_DEBUG(" PASS TO CORE"); return EventPassedToCore; } bool inSnippetMode = false; QMetaObject::invokeMethod(editor(), "inSnippetMode", Q_ARG(bool *, &inSnippetMode)); if (inSnippetMode) return EventPassedToCore; // Fake "End of line" //m_tc = cursor(); //bool hasBlock = false; //emit q->requestHasBlockSelection(&hasBlock); //qDebug() << "IMPORT BLOCK 2:" << hasBlock; //if (0 && hasBlock) { // (pos > anc) ? --pos : --anc; importSelection(); // Position changed externally, e.g. by code completion. if (position() != m_oldPosition) { setTargetColumn(); //qDebug() << "POSITION CHANGED EXTERNALLY"; if (m_mode == InsertMode) { int dist = position() - m_oldPosition; // Try to compensate for code completion if (dist > 0 && dist <= physicalCursorColumn()) { Range range(m_oldPosition, position()); m_lastInsertion.append(selectText(range)); } } else if (!isVisualMode()) { if (atEndOfLine()) moveLeft(); } } QTextCursor tc = cursor(); tc.setVisualNavigation(true); if (m_firstKeyPending) { m_firstKeyPending = false; recordJump(); } setCursor(tc); if (m_fakeEnd) moveRight(); //if ((mods & RealControlModifier) != 0) { // if (key >= Key_A && key <= Key_Z) // key = shift(key); // make it lower case // key = control(key); //} else if (key >= Key_A && key <= Key_Z && (mods & Qt::ShiftModifier) == 0) { // key = shift(key); //} //QTC_ASSERT(m_mode == InsertMode || m_mode == ReplaceMode // || !atBlockEnd() || block().length() <= 1, // qDebug() << "Cursor at EOL before key handler"); EventResult result = handleKey(Input(key, mods, ev->text())); // The command might have destroyed the editor. if (m_textedit || m_plaintextedit) { // We fake vi-style end-of-line behaviour m_fakeEnd = atEndOfLine() && m_mode == CommandMode && !isVisualBlockMode(); //QTC_ASSERT(m_mode == InsertMode || m_mode == ReplaceMode // || !atBlockEnd() || block().length() <= 1, // qDebug() << "Cursor at EOL after key handler"); if (m_fakeEnd) moveLeft(); m_oldPosition = position(); if (hasConfig(ConfigShowMarks)) updateSelection(); exportSelection(); updateCursorShape(); } return result; } void FakeVimHandler::Private::installEventFilter() { EDITOR(viewport()->installEventFilter(q)); EDITOR(installEventFilter(q)); } void FakeVimHandler::Private::setupWidget() { enterCommandMode(); if (m_textedit) { m_textedit->setLineWrapMode(QTextEdit::NoWrap); } else if (m_plaintextedit) { m_plaintextedit->setLineWrapMode(QPlainTextEdit::NoWrap); } m_wasReadOnly = EDITOR(isReadOnly()); m_firstKeyPending = true; updateEditor(); importSelection(); updateMiniBuffer(); updateCursorShape(); } void FakeVimHandler::Private::exportSelection() { int pos = position(); int anc = anchor(); m_oldInternalPosition = pos; m_oldInternalAnchor = anc; if (isVisualMode()) { if (pos >= anc) setAnchorAndPosition(anc, pos + 1); else setAnchorAndPosition(anc + 1, pos); if (m_visualMode == VisualBlockMode) { emit q->requestSetBlockSelection(false); emit q->requestSetBlockSelection(true); } else if (m_visualMode == VisualLineMode) { const int posLine = lineForPosition(pos); const int ancLine = lineForPosition(anc); if (anc < pos) { pos = lastPositionInLine(posLine); anc = firstPositionInLine(ancLine); } else { pos = firstPositionInLine(posLine); anc = lastPositionInLine(ancLine); } setAnchorAndPosition(anc, pos); } else if (m_visualMode == VisualCharMode) { /* Nothing */ } else { QTC_CHECK(false); } } else { if (m_subsubmode == SearchSubSubMode && !m_searchCursor.isNull()) setCursor(m_searchCursor); else setAnchorAndPosition(pos, pos); } m_oldExternalPosition = position(); m_oldExternalAnchor = anchor(); m_oldVisualMode = m_visualMode; } void FakeVimHandler::Private::importSelection() { bool hasBlock = false; emit q->requestHasBlockSelection(&hasBlock); if (position() == m_oldExternalPosition && anchor() == m_oldExternalAnchor) { // Undo drawing correction. m_visualMode = m_oldVisualMode; setAnchorAndPosition(m_oldInternalAnchor, m_oldInternalPosition); //setMark('<', m_oldInternalAnchor); //setMark('>', m_oldInternalPosition); } else { // Import new selection. Qt::KeyboardModifiers mods = QApplication::keyboardModifiers(); if (cursor().hasSelection()) { if (mods & HostOsInfo::controlModifier()) m_visualMode = VisualBlockMode; else if (mods & Qt::AltModifier) m_visualMode = VisualBlockMode; else if (mods & Qt::ShiftModifier) m_visualMode = VisualLineMode; else m_visualMode = VisualCharMode; } else { m_visualMode = NoVisualMode; } //dump("IS @"); //setMark('<', tc.anchor()); //setMark('>', tc.position()); } } void FakeVimHandler::Private::updateEditor() { const int charWidth = QFontMetrics(EDITOR(font())).width(QChar(' ')); EDITOR(setTabStopWidth(charWidth * config(ConfigTabStop).toInt())); setupCharClass(); } void FakeVimHandler::Private::restoreWidget(int tabSize) { //clearMessage(); //updateMiniBuffer(); //EDITOR(removeEventFilter(q)); //EDITOR(setReadOnly(m_wasReadOnly)); const int charWidth = QFontMetrics(EDITOR(font())).width(QChar(' ')); EDITOR(setTabStopWidth(charWidth * tabSize)); m_visualMode = NoVisualMode; // Force "ordinary" cursor. m_mode = InsertMode; m_submode = NoSubMode; m_subsubmode = NoSubSubMode; updateCursorShape(); updateSelection(); updateHighlights(); } EventResult FakeVimHandler::Private::handleKey(const Input &input) { KEY_DEBUG("HANDLE INPUT: " << input << " MODE: " << mode); bool handleMapped = true; bool hasInput = input.isValid(); if (hasInput) g.pendingInput.append(input); // Waiting on input to complete mapping? if (g.inputTimer != -1) { killTimer(g.inputTimer); g.inputTimer = -1; // If there is a new input add it to incomplete input or // if the mapped input can be completed complete. if (hasInput && g.currentMap.walk(input)) { if (g.currentMap.canExtend()) { g.inputTimer = startTimer(1000); return EventHandled; } else { hasInput = false; handleMappedKeys(); } } else if (g.currentMap.isComplete()) { handleMappedKeys(); } else { g.currentMap.reset(); handleMapped = false; } } EventResult r = EventUnhandled; while (!g.pendingInput.isEmpty()) { const Input &in = g.pendingInput.front(); // invalid input is used to pop mapping state if (!in.isValid()) { g.mapStates.pop_back(); QTC_CHECK(!g.mapStates.empty()); endEditBlock(); if (g.mapStates.size() == 1) g.commandBuffer.setHistoryAutoSave(true); if (m_mode == ExMode || m_subsubmode == SearchSubSubMode) updateMiniBuffer(); // update cursor position on command line } else { if (handleMapped && !g.mapStates.last().noremap && m_subsubmode != SearchSubSubMode) { if (!g.currentMap.isValid()) { g.currentMap.reset(currentModeCode()); if (!g.currentMap.walk(g.pendingInput) && g.currentMap.isComplete()) { handleMappedKeys(); continue; } } // handle user mapping if (g.currentMap.canExtend()) { // wait for user to press any key or trigger complete mapping after interval g.inputTimer = startTimer(1000); return EventHandled; } else if (g.currentMap.isComplete()) { handleMappedKeys(); continue; } } r = handleDefaultKey(in); // TODO: Unhadled events! } handleMapped = true; g.pendingInput.pop_front(); } return r; } EventResult FakeVimHandler::Private::handleDefaultKey(const Input &input) { if (input == Nop) return EventHandled; else if (m_subsubmode == SearchSubSubMode) return handleSearchSubSubMode(input); else if (m_mode == CommandMode) return handleCommandMode(input); else if (m_mode == InsertMode) return handleInsertMode(input); else if (m_mode == ReplaceMode) return handleReplaceMode(input); else if (m_mode == ExMode) return handleExMode(input); return EventUnhandled; } void FakeVimHandler::Private::handleMappedKeys() { int maxMapDepth = g.mapStates.last().maxMapDepth - 1; int invalidCount = g.currentMap.invalidInputCount(); if (invalidCount > 0) { g.mapStates.remove(g.mapStates.size() - invalidCount, invalidCount); QTC_CHECK(!g.mapStates.empty()); for (int i = 0; i < invalidCount; ++i) endEditBlock(); } if (maxMapDepth <= 0) { showMessage(MessageError, "recursive mapping"); g.pendingInput.remove(0, g.currentMap.mapLength() + invalidCount); } else { const Inputs &inputs = g.currentMap.inputs(); QVector rest = g.pendingInput.mid(g.currentMap.mapLength() + invalidCount); g.pendingInput.clear(); g.pendingInput << inputs << Input() << rest; g.mapStates << MappingState(maxMapDepth, inputs.noremap(), inputs.silent()); g.commandBuffer.setHistoryAutoSave(false); beginEditBlock(); } g.currentMap.reset(); } void FakeVimHandler::Private::timerEvent(QTimerEvent *ev) { if (ev->timerId() == g.inputTimer) { if (g.currentMap.isComplete()) handleMappedKeys(); handleKey(Input()); } } void FakeVimHandler::Private::stopIncrementalFind() { if (m_findPending) { m_findPending = false; QTextCursor tc = cursor(); setAnchorAndPosition(m_findStartPosition, tc.selectionStart()); finishMovement(); setAnchor(); } } void FakeVimHandler::Private::updateFind(bool isComplete) { if (!isComplete && !hasConfig(ConfigIncSearch)) return; g.currentMessage.clear(); const QString &needle = g.searchBuffer.contents(); SearchData sd; sd.needle = needle; sd.forward = m_lastSearchForward; sd.highlightMatches = isComplete; search(sd, isComplete); } bool FakeVimHandler::Private::atEmptyLine(const QTextCursor &tc) const { if (tc.isNull()) return atEmptyLine(cursor()); return tc.block().length() == 1; } bool FakeVimHandler::Private::atBoundary(bool end, bool simple, bool onlyWords, const QTextCursor &tc) const { if (tc.isNull()) return atBoundary(end, simple, onlyWords, cursor()); if (atEmptyLine(tc)) return true; int pos = tc.position(); QChar c1 = document()->characterAt(pos); QChar c2 = document()->characterAt(pos + (end ? 1 : -1)); int thisClass = charClass(c1, simple); return (!onlyWords || thisClass != 0) && (c2.isNull() || c2 == ParagraphSeparator || thisClass != charClass(c2, simple)); } bool FakeVimHandler::Private::atWordBoundary(bool end, bool simple, const QTextCursor &tc) const { return atBoundary(end, simple, true, tc); } bool FakeVimHandler::Private::atWordStart(bool simple, const QTextCursor &tc) const { return atWordBoundary(false, simple, tc); } bool FakeVimHandler::Private::atWordEnd(bool simple, const QTextCursor &tc) const { return atWordBoundary(true, simple, tc); } bool FakeVimHandler::Private::isFirstNonBlankOnLine(int pos) { for (int i = document()->findBlock(pos).position(); i < pos; ++i) { if (!document()->characterAt(i).isSpace()) return false; } return true; } void FakeVimHandler::Private::setUndoPosition(bool overwrite) { const int rev = revision(); if (!overwrite && !m_undo.empty() && m_undo.top().revision >= rev) return; int pos = position(); if (m_mode != InsertMode && m_mode != ReplaceMode) { if (isVisualMode() || m_submode == DeleteSubMode) { pos = qMin(pos, anchor()); if (isVisualLineMode()) pos = firstPositionInLine(lineForPosition(pos)); } else if (m_movetype == MoveLineWise && hasConfig(ConfigStartOfLine)) { QTextCursor tc = cursor(); moveToFirstNonBlankOnLine(&tc); pos = qMin(pos, tc.position()); } } m_redo.clear(); while (!m_undo.empty() && m_undo.top().revision >= rev) m_undo.pop(); m_undo.push(State(rev, pos, lineForPosition(pos), m_marks)); m_lastChangePosition = pos; } void FakeVimHandler::Private::moveDown(int n) { #if 0 // does not work for "hidden" documents like in the autotests tc.movePosition(Down, MoveAnchor, n); #else const int col = position() - block().position(); const int lastLine = document()->lastBlock().blockNumber(); const int targetLine = qMax(0, qMin(lastLine, block().blockNumber() + n)); const QTextBlock &block = document()->findBlockByNumber(targetLine); const int pos = block.position(); setPosition(pos + qMax(0, qMin(block.length() - 2, col))); moveToTargetColumn(); #endif } void FakeVimHandler::Private::moveToEndOfLine() { #if 0 // does not work for "hidden" documents like in the autotests tc.movePosition(EndOfLine, MoveAnchor); #else const int pos = block().position() + block().length() - 2; setPosition(qMax(block().position(), pos)); #endif } void FakeVimHandler::Private::moveBehindEndOfLine() { int pos = qMin(block().position() + block().length() - 1, lastPositionInDocument()); setPosition(pos); } void FakeVimHandler::Private::moveToStartOfLine() { #if 0 // does not work for "hidden" documents like in the autotests tc.movePosition(StartOfLine, MoveAnchor); #else setPosition(block().position()); #endif } void FakeVimHandler::Private::finishMovement(const QString &dotCommand, int count) { finishMovement(dotCommand.arg(count)); } void FakeVimHandler::Private::finishMovement(const QString &dotCommand) { //dump("FINISH MOVEMENT"); if (m_submode == FilterSubMode) { int beginLine = lineForPosition(anchor()); int endLine = lineForPosition(position()); setPosition(qMin(anchor(), position())); enterExMode(); g.currentMessage.clear(); g.commandBuffer.setContents(QString(".,+%1!").arg(qAbs(endLine - beginLine))); updateMiniBuffer(); return; } //if (isVisualMode()) // setMark('>', position()); if (m_submode == ChangeSubMode || m_submode == DeleteSubMode || m_submode == YankSubMode || m_submode == TransformSubMode) { if (m_movetype == MoveExclusive) { if (anchor() != position() && atBlockStart()) { // Exlusive motion ending at the beginning of line // becomes inclusive and end is moved to end of previous line. m_movetype = MoveInclusive; moveToStartOfLine(); moveLeft(); // Exclusive motion ending at the beginning of line and // starting at or before first non-blank on a line becomes linewise. if (anchor() < block().position() && isFirstNonBlankOnLine(anchor())) { m_movetype = MoveLineWise; } } } if (m_submode != YankSubMode) beginEditBlock(); if (m_movetype == MoveLineWise) m_rangemode = (m_submode == ChangeSubMode) ? RangeLineModeExclusive : RangeLineMode; if (m_movetype == MoveInclusive) { if (anchor() <= position()) { if (!atBlockEnd()) setPosition(position() + 1); // correction // If more than one line is selected and all are selected completely // movement becomes linewise. int start = anchor(); if (start < block().position() && isFirstNonBlankOnLine(start) && atBlockEnd()) { moveRight(); if (atEmptyLine()) moveRight(); m_movetype = MoveLineWise; } } else { setAnchorAndPosition(anchor() + 1, position()); } } if (m_positionPastEnd) { const int anc = anchor(); moveBehindEndOfLine(); moveRight(); setAnchorAndPosition(anc, position()); } if (m_anchorPastEnd) { setAnchorAndPosition(anchor() + 1, position()); } if (m_submode != TransformSubMode) { yankText(currentRange(), m_register); if (m_movetype == MoveLineWise) setRegister(m_register, registerContents(m_register), RangeLineMode); } m_positionPastEnd = m_anchorPastEnd = false; } if (m_submode == ChangeSubMode) { if (m_rangemode == RangeLineMode) m_rangemode = RangeLineModeExclusive; removeText(currentRange()); if (!dotCommand.isEmpty()) setDotCommand(QLatin1Char('c') + dotCommand); if (m_movetype == MoveLineWise) insertAutomaticIndentation(true); endEditBlock(); enterInsertMode(); m_submode = NoSubMode; } else if (m_submode == DeleteSubMode) { setUndoPosition(); Range range = currentRange(); removeText(range); if (!dotCommand.isEmpty()) setDotCommand(QLatin1Char('d') + dotCommand); if (m_movetype == MoveLineWise) handleStartOfLine(); m_submode = NoSubMode; if (atEndOfLine()) moveLeft(); else setTargetColumn(); endEditBlock(); } else if (m_submode == YankSubMode) { m_submode = NoSubMode; const int la = lineForPosition(anchor()); const int lp = lineForPosition(position()); if (m_register != '"') { setPosition(mark(m_register)); moveToStartOfLine(); } else { if (anchor() <= position()) setPosition(anchor()); } if (la != lp) showMessage(MessageInfo, QString("%1 lines yanked").arg(qAbs(la - lp) + 1)); } else if (m_submode == TransformSubMode) { if (m_subsubmode == InvertCaseSubSubMode) { invertCase(currentRange()); if (!dotCommand.isEmpty()) setDotCommand(QLatin1Char('~') + dotCommand); } else if (m_subsubmode == UpCaseSubSubMode) { upCase(currentRange()); if (!dotCommand.isEmpty()) setDotCommand("gU" + dotCommand); } else if (m_subsubmode == DownCaseSubSubMode) { downCase(currentRange()); if (!dotCommand.isEmpty()) setDotCommand("gu" + dotCommand); } m_submode = NoSubMode; m_subsubmode = NoSubSubMode; setPosition(qMin(anchor(), position())); if (m_movetype == MoveLineWise) handleStartOfLine(); endEditBlock(); } else if (m_submode == IndentSubMode) { recordJump(); setUndoPosition(); indentSelectedText(); m_submode = NoSubMode; } else if (m_submode == ShiftRightSubMode) { recordJump(); setUndoPosition(); shiftRegionRight(1); m_submode = NoSubMode; } else if (m_submode == ShiftLeftSubMode) { recordJump(); setUndoPosition(); shiftRegionLeft(1); m_submode = NoSubMode; } resetCommandMode(); } void FakeVimHandler::Private::resetCommandMode() { m_movetype = MoveInclusive; m_mvcount.clear(); m_opcount.clear(); m_gflag = false; m_register = '"'; //m_tc.clearSelection(); m_rangemode = RangeCharMode; } void FakeVimHandler::Private::updateSelection() { QList selections = m_extraSelections; if (hasConfig(ConfigShowMarks)) { for (MarksIterator it(m_marks); it.hasNext(); ) { it.next(); QTextEdit::ExtraSelection sel; const int pos = it.value().position(); sel.cursor = cursor(); sel.cursor.setPosition(pos, MoveAnchor); sel.cursor.setPosition(pos + 1, KeepAnchor); sel.format = cursor().blockCharFormat(); sel.format.setForeground(Qt::blue); sel.format.setBackground(Qt::green); selections.append(sel); } } //qDebug() << "SELECTION: " << selections; emit q->selectionChanged(selections); } void FakeVimHandler::Private::updateHighlights() { if (!hasConfig(ConfigUseCoreSearch)) emit q->highlightMatches(m_oldNeedle); } void FakeVimHandler::Private::updateMiniBuffer() { if (!m_textedit && !m_plaintextedit) return; QString msg; int cursorPos = -1; MessageLevel messageLevel = MessageMode; if (g.mapStates.last().silent && g.currentMessageLevel < MessageInfo) g.currentMessage.clear(); if (m_passing) { msg = "PASSING"; } else if (m_subsubmode == SearchSubSubMode) { msg = g.searchBuffer.display(); if (g.mapStates.size() == 1) cursorPos = g.searchBuffer.cursorPos() + 1; } else if (m_mode == ExMode) { msg = g.commandBuffer.display(); if (g.mapStates.size() == 1) cursorPos = g.commandBuffer.cursorPos() + 1; } else if (!g.currentMessage.isEmpty()) { msg = g.currentMessage; g.currentMessage.clear(); messageLevel = g.currentMessageLevel; } else if (g.mapStates.size() > 1 && !g.mapStates.last().silent) { // Do not reset previous message when after running a mapped command. return; } else if (m_mode == CommandMode && isVisualMode()) { if (isVisualCharMode()) { msg = "VISUAL"; } else if (isVisualLineMode()) { msg = "VISUAL LINE"; } else if (isVisualBlockMode()) { msg = "VISUAL BLOCK"; } } else if (m_mode == InsertMode) { msg = "INSERT"; } else if (m_mode == ReplaceMode) { msg = "REPLACE"; } else { QTC_CHECK(m_mode == CommandMode && m_subsubmode != SearchSubSubMode); msg = "COMMAND"; } emit q->commandBufferChanged(msg, cursorPos, messageLevel, q); int linesInDoc = linesInDocument(); int l = cursorLine(); QString status; const QString pos = QString::fromLatin1("%1,%2") .arg(l + 1).arg(physicalCursorColumn() + 1); // FIXME: physical "-" logical if (linesInDoc != 0) { status = FakeVimHandler::tr("%1%2%").arg(pos, -10).arg(l * 100 / linesInDoc, 4); } else { status = FakeVimHandler::tr("%1All").arg(pos, -10); } emit q->statusDataChanged(status); } void FakeVimHandler::Private::showMessage(MessageLevel level, const QString &msg) { //qDebug() << "MSG: " << msg; g.currentMessage = msg; g.currentMessageLevel = level; updateMiniBuffer(); } void FakeVimHandler::Private::notImplementedYet() { qDebug() << "Not implemented in FakeVim"; showMessage(MessageError, FakeVimHandler::tr("Not implemented in FakeVim")); updateMiniBuffer(); } void FakeVimHandler::Private::passShortcuts(bool enable) { m_passing = enable; updateMiniBuffer(); if (enable) QCoreApplication::instance()->installEventFilter(q); else QCoreApplication::instance()->removeEventFilter(q); } static bool subModeCanUseTextObjects(int submode) { return submode == DeleteSubMode || submode == YankSubMode || submode == ChangeSubMode || submode == IndentSubMode || submode == ShiftLeftSubMode || submode == ShiftRightSubMode; } EventResult FakeVimHandler::Private::handleCommandSubSubMode(const Input &input) { //const int key = input.key; EventResult handled = EventHandled; if (m_subsubmode == FtSubSubMode) { m_semicolonType = m_subsubdata; m_semicolonKey = input.text(); bool valid = handleFfTt(m_semicolonKey); m_subsubmode = NoSubSubMode; if (!valid) { m_submode = NoSubMode; finishMovement(); } else { finishMovement(QString("%1%2%3") .arg(count()) .arg(m_semicolonType.text()) .arg(m_semicolonKey)); } } else if (m_subsubmode == TextObjectSubSubMode) { if (input.is('w')) selectWordTextObject(m_subsubdata.is('i')); else if (input.is('W')) selectWORDTextObject(m_subsubdata.is('i')); else if (input.is('s')) selectSentenceTextObject(m_subsubdata.is('i')); else if (input.is('p')) selectParagraphTextObject(m_subsubdata.is('i')); else if (input.is('[') || input.is(']')) selectBlockTextObject(m_subsubdata.is('i'), '[', ']'); else if (input.is('(') || input.is(')') || input.is('b')) selectBlockTextObject(m_subsubdata.is('i'), '(', ')'); else if (input.is('<') || input.is('>')) selectBlockTextObject(m_subsubdata.is('i'), '<', '>'); else if (input.is('{') || input.is('}') || input.is('B')) selectBlockTextObject(m_subsubdata.is('i'), '{', '}'); else if (input.is('"') || input.is('\'') || input.is('`')) selectQuotedStringTextObject(m_subsubdata.is('i'), input.asChar()); m_subsubmode = NoSubSubMode; finishMovement(QString("%1%2%3") .arg(count()) .arg(m_subsubdata.text()) .arg(input.text())); } else if (m_subsubmode == MarkSubSubMode) { setMark(input.asChar().unicode(), position()); m_subsubmode = NoSubSubMode; } else if (m_subsubmode == BackTickSubSubMode || m_subsubmode == TickSubSubMode) { ushort markChar = input.asChar().unicode(); int m = mark(markChar); if (m != -1) { if (markChar == '\'' && !m_jumpListUndo.isEmpty()) m_jumpListUndo.pop(); recordJump(); setPosition(m); if (m_subsubmode == TickSubSubMode) moveToFirstNonBlankOnLine(); finishMovement(); } else { showMessage(MessageError, msgMarkNotSet(input.text())); } m_subsubmode = NoSubSubMode; } else { handled = EventUnhandled; } return handled; } EventResult FakeVimHandler::Private::handleOpenSquareSubMode(const Input &input) { EventResult handled = EventHandled; m_submode = NoSubMode; if (input.is('{')) { searchBalanced(false, '{', '}'); } else if (input.is('(')) { searchBalanced(false, '(', ')'); } else { handled = EventUnhandled; } return handled; } EventResult FakeVimHandler::Private::handleCloseSquareSubMode(const Input &input) { EventResult handled = EventHandled; m_submode = NoSubMode; if (input.is('}')) { searchBalanced(true, '}', '{'); } else if (input.is(')')) { searchBalanced(true, ')', '('); } else { handled = EventUnhandled; } return handled; } EventResult FakeVimHandler::Private::handleCommandMode(const Input &input) { EventResult handled = EventHandled; if (input.isEscape()) { if (isVisualMode()) { leaveVisualMode(); } else if (m_submode != NoSubMode) { m_submode = NoSubMode; m_subsubmode = NoSubSubMode; finishMovement(); } else { resetCommandMode(); updateMiniBuffer(); } } else if (m_subsubmode != NoSubSubMode) { handleCommandSubSubMode(input); } else if (m_submode == OpenSquareSubMode) { handled = handleOpenSquareSubMode(input); } else if (m_submode == CloseSquareSubMode) { handled = handleCloseSquareSubMode(input); } else if (m_submode == WindowSubMode) { emit q->windowCommandRequested(input.key()); m_submode = NoSubMode; } else if (m_submode == RegisterSubMode) { m_register = input.asChar().unicode(); m_submode = NoSubMode; m_rangemode = RangeLineMode; } else if (m_submode == ReplaceSubMode) { if (isVisualMode()) { setUndoPosition(); if (isVisualLineMode()) m_rangemode = RangeLineMode; else if (isVisualBlockMode()) m_rangemode = RangeBlockMode; else m_rangemode = RangeCharMode; leaveVisualMode(); Range range = currentRange(); Transformation tr = &FakeVimHandler::Private::replaceByCharTransform; transformText(range, tr, input.asChar()); setPosition(range.beginPos); } else if (count() <= rightDist()) { setUndoPosition(); setAnchor(); moveRight(count()); Range range = currentRange(); if (input.isReturn()) { beginEditBlock(); replaceText(range, QString()); insertText(QString("\n")); endEditBlock(); } else { replaceText(range, QString(count(), input.asChar())); moveLeft(); } setTargetColumn(); setDotCommand("%1r" + input.text(), count()); } m_submode = NoSubMode; finishMovement(); } else if (m_submode == ChangeSubMode && input.is('c')) { // tested m_movetype = MoveLineWise; setUndoPosition(); moveToStartOfLine(); setAnchor(); moveDown(count() - 1); moveToEndOfLine(); m_lastInsertion.clear(); setDotCommand("%1cc", count()); finishMovement(); } else if (m_submode == DeleteSubMode && input.is('d')) { // tested m_movetype = MoveLineWise; setUndoPosition(); int endPos = firstPositionInLine(lineForPosition(position()) + count() - 1); Range range(position(), endPos, RangeLineMode); yankText(range); removeText(range); setDotCommand("%1dd", count()); m_submode = NoSubMode; handleStartOfLine(); setTargetColumn(); finishMovement(); } else if ((subModeCanUseTextObjects(m_submode) || isVisualMode()) && (input.is('a') || input.is('i'))) { m_subsubmode = TextObjectSubSubMode; m_subsubdata = input; } else if (m_submode == ShiftLeftSubMode && input.is('<')) { m_movetype = MoveLineWise; setUndoPosition(); setAnchor(); moveDown(count() - 1); setDotCommand("%1<<", count()); finishMovement(); } else if (m_submode == ShiftRightSubMode && input.is('>')) { m_movetype = MoveLineWise; setUndoPosition(); setAnchor(); moveDown(count() - 1); setDotCommand("%1>>", count()); finishMovement(); } else if (m_submode == IndentSubMode && input.is('=')) { m_movetype = MoveLineWise; setUndoPosition(); setAnchor(); moveDown(count() - 1); setDotCommand("%1==", count()); finishMovement(); } else if (m_submode == ZSubMode) { //qDebug() << "Z_MODE " << cursorLine() << linesOnScreen(); if (input.isReturn() || input.is('t')) { // Cursor line to top of window. if (!m_mvcount.isEmpty()) setPosition(firstPositionInLine(count())); scrollUp(- cursorLineOnScreen()); if (input.isReturn()) moveToFirstNonBlankOnLine(); finishMovement(); } else if (input.is('.') || input.is('z')) { // Cursor line to center of window. if (!m_mvcount.isEmpty()) setPosition(firstPositionInLine(count())); scrollUp(linesOnScreen() / 2 - cursorLineOnScreen()); if (input.is('.')) moveToFirstNonBlankOnLine(); finishMovement(); } else if (input.is('-') || input.is('b')) { // Cursor line to bottom of window. if (!m_mvcount.isEmpty()) setPosition(firstPositionInLine(count())); scrollUp(linesOnScreen() - cursorLineOnScreen()); if (input.is('-')) moveToFirstNonBlankOnLine(); finishMovement(); } else { qDebug() << "IGNORED Z_MODE " << input.key() << input.text(); } m_submode = NoSubMode; } else if (m_submode == CapitalZSubMode) { // Recognize ZZ and ZQ as aliases for ":x" and ":q!". m_submode = NoSubMode; if (input.is('Z')) handleExCommand(QString(QLatin1Char('x'))); else if (input.is('Q')) handleExCommand("q!"); } else if (input.isDigit()) { if (input.is('0') && m_mvcount.isEmpty()) { m_movetype = MoveExclusive; moveToStartOfLine(); setTargetColumn(); finishMovement(QString(QLatin1Char('0'))); } else { m_mvcount.append(input.text()); } } else { handled = handleCommandMode1(input); } return handled; } EventResult FakeVimHandler::Private::handleCommandMode1(const Input &input) { EventResult handled = EventHandled; if (input.is('^') || input.is('_')) { moveToFirstNonBlankOnLine(); setTargetColumn(); m_movetype = MoveExclusive; finishMovement(input.text()); } else if (0 && input.is(',')) { // 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 (input.is(';')) { m_subsubmode = FtSubSubMode; m_subsubdata = m_semicolonType; handleFfTt(m_semicolonKey); m_subsubmode = NoSubSubMode; finishMovement(); } else if (input.is('&')) { handleExCommand(m_gflag ? "%s//~/&" : "s"); } else if (input.is(':')) { enterExMode(); g.currentMessage.clear(); g.commandBuffer.clear(); if (isVisualMode()) g.commandBuffer.setContents("'<,'>"); updateMiniBuffer(); } else if (input.is('/') || input.is('?')) { m_lastSearchForward = input.is('/'); if (hasConfig(ConfigUseCoreSearch)) { // re-use the core dialog. m_findPending = true; m_findStartPosition = position(); m_movetype = MoveExclusive; setAnchor(); // clear selection: otherwise, search is restricted to selection emit q->findRequested(!m_lastSearchForward); } else { // FIXME: make core find dialog sufficiently flexible to // produce the "default vi" behaviour too. For now, roll our own. g.currentMessage.clear(); m_movetype = MoveExclusive; m_subsubmode = SearchSubSubMode; g.searchBuffer.setPrompt(m_lastSearchForward ? '/' : '?'); m_searchStartPosition = position(); m_searchFromScreenLine = firstVisibleLine(); m_searchCursor = QTextCursor(); g.searchBuffer.clear(); updateMiniBuffer(); } } else if (input.is('`')) { m_subsubmode = BackTickSubSubMode; if (m_submode != NoSubMode) m_movetype = MoveLineWise; } else if (input.is('#') || input.is('*')) { // FIXME: That's not proper vim behaviour QString needle; QTextCursor tc = cursor(); tc.select(QTextCursor::WordUnderCursor); needle = "\\<" + tc.selection().toPlainText() + "\\>"; setAnchorAndPosition(tc.position(), tc.anchor()); g.searchBuffer.historyPush(needle); m_lastSearchForward = input.is('*'); searchNext(); finishMovement(); } else if (input.is('\'')) { m_subsubmode = TickSubSubMode; if (m_submode != NoSubMode) m_movetype = MoveLineWise; } else if (input.is('|')) { moveToStartOfLine(); moveRight(qMin(count(), rightDist()) - 1); setTargetColumn(); finishMovement(); } else if (input.is('!') && isNoVisualMode()) { m_submode = FilterSubMode; } else if (input.is('!') && isVisualMode()) { enterExMode(); g.currentMessage.clear(); g.commandBuffer.setContents("'<,'>!"); updateMiniBuffer(); } else if (input.is('"')) { m_submode = RegisterSubMode; } else if (input.isReturn()) { moveToStartOfLine(); moveDown(); moveToFirstNonBlankOnLine(); m_movetype = MoveLineWise; finishMovement("%1j", count()); } else if (input.is('-')) { moveToStartOfLine(); moveUp(count()); moveToFirstNonBlankOnLine(); m_movetype = MoveLineWise; finishMovement("%1-", count()); } else if (input.is('+')) { moveToStartOfLine(); moveDown(count()); moveToFirstNonBlankOnLine(); m_movetype = MoveLineWise; finishMovement("%1+", count()); } else if (input.isKey(Key_Home)) { moveToStartOfLine(); setTargetColumn(); finishMovement(); } else if (input.is('$') || input.isKey(Key_End)) { if (count() > 1) moveDown(count() - 1); moveToEndOfLine(); m_movetype = MoveInclusive; setTargetColumn(); if (m_submode == NoSubMode) m_targetColumn = -1; if (isVisualMode()) m_visualTargetColumn = -1; finishMovement("%1$", count()); } else if (input.is(',')) { passShortcuts(true); } else if (input.is('.')) { //qDebug() << "REPEATING" << quoteUnprintable(g.dotCommand) << count() // << input; QString savedCommand = g.dotCommand; g.dotCommand.clear(); replay(savedCommand, count()); enterCommandMode(); g.dotCommand = savedCommand; } else if (input.is('<')) { if (isNoVisualMode()) { m_submode = ShiftLeftSubMode; } else { shiftRegionLeft(count()); leaveVisualMode(); } } else if (input.is('>')) { if (isNoVisualMode()) { m_submode = ShiftRightSubMode; } else { shiftRegionRight(count()); leaveVisualMode(); } } else if (input.is('=')) { if (isNoVisualMode()) { m_submode = IndentSubMode; } else { indentSelectedText(); leaveVisualMode(); } } else if (input.is('%')) { moveToMatchingParanthesis(); finishMovement(); } else if ((!isVisualMode() && input.is('a')) || (isVisualMode() && input.is('A'))) { leaveVisualMode(); setUndoPosition(); breakEditBlock(); enterInsertMode(); m_lastInsertion.clear(); if (!atEndOfLine()) moveRight(); updateMiniBuffer(); } else if (input.is('A')) { breakEditBlock(); moveBehindEndOfLine(); setUndoPosition(); setAnchor(); enterInsertMode(); setDotCommand(QString(QLatin1Char('A'))); m_lastInsertion.clear(); updateMiniBuffer(); } else if (input.isControl('a')) { changeNumberTextObject(true); } else if (input.is('b') || input.isShift(Key_Left)) { m_movetype = MoveExclusive; moveToNextWordStart(count(), false, false); setTargetColumn(); finishMovement(); } else if (input.is('B')) { m_movetype = MoveExclusive; moveToNextWordStart(count(), true, false); setTargetColumn(); finishMovement(); } else if (input.is('c') && isNoVisualMode()) { setUndoPosition(); if (atEndOfLine()) moveLeft(); setAnchor(); m_submode = ChangeSubMode; } else if ((input.is('c') || input.is('C') || input.is('s') || input.is('R')) && (isVisualCharMode() || isVisualLineMode())) { if ((input.is('c')|| input.is('s')) && isVisualCharMode()) { leaveVisualMode(); m_rangemode = RangeCharMode; } else { leaveVisualMode(); m_rangemode = RangeLineMode; // leaveVisualMode() has set this to MoveInclusive for visual character mode m_movetype = MoveLineWise; } m_submode = ChangeSubMode; finishMovement(); } else if (input.is('C')) { setAnchor(); moveToEndOfLine(); m_submode = ChangeSubMode; setDotCommand(QString(QLatin1Char('C'))); finishMovement(); } else if (input.isControl('c')) { if (isNoVisualMode()) showMessage(MessageInfo, "Type Alt-v,Alt-v to quit FakeVim mode"); else leaveVisualMode(); } else if (input.is('d') && isNoVisualMode()) { if (m_rangemode == RangeLineMode) { int pos = position(); moveToEndOfLine(); setAnchor(); setPosition(pos); } else { setAnchor(); } m_opcount = m_mvcount; m_mvcount.clear(); m_submode = DeleteSubMode; } else if ((input.is('d') || input.is('x') || input.isKey(Key_Delete)) && isVisualMode()) { setUndoPosition(); if (isVisualCharMode()) { leaveVisualMode(); m_submode = DeleteSubMode; finishMovement(); } else if (isVisualLineMode()) { leaveVisualMode(); m_rangemode = RangeLineMode; yankText(currentRange(), m_register); removeText(currentRange()); handleStartOfLine(); } else if (isVisualBlockMode()) { leaveVisualMode(); m_rangemode = RangeBlockMode; yankText(currentRange(), m_register); removeText(currentRange()); setPosition(qMin(position(), anchor())); } } else if (input.is('D') && isNoVisualMode()) { setUndoPosition(); if (atEndOfLine()) moveLeft(); m_submode = DeleteSubMode; setAnchor(); moveDown(qMax(count() - 1, 0)); m_movetype = MoveInclusive; moveToEndOfLine(); setDotCommand(QString(QLatin1Char('D'))); finishMovement(); } else if ((input.is('D') || input.is('X')) && (isVisualCharMode() || isVisualLineMode())) { leaveVisualMode(); m_rangemode = RangeLineMode; m_submode = NoSubMode; yankText(currentRange(), m_register); removeText(currentRange()); moveToFirstNonBlankOnLine(); } else if ((input.is('D') || input.is('X')) && isVisualBlockMode()) { leaveVisualMode(); m_rangemode = RangeBlockAndTailMode; yankText(currentRange(), m_register); removeText(currentRange()); setPosition(qMin(position(), anchor())); } else if (input.isControl('d')) { int sline = cursorLineOnScreen(); // FIXME: this should use the "scroll" option, and "count" moveDown(linesOnScreen() / 2); handleStartOfLine(); scrollToLine(cursorLine() - sline); finishMovement(); } else if (input.is('e') && m_gflag) { m_movetype = MoveInclusive; moveToNextWordEnd(count(), false, false); setTargetColumn(); finishMovement("%1ge", count()); } else if (input.is('e') || input.isShift(Key_Right)) { m_movetype = MoveInclusive; moveToNextWordEnd(count(), false, true, false); setTargetColumn(); finishMovement("%1e", count()); } else if (input.is('E') && m_gflag) { m_movetype = MoveInclusive; moveToNextWordEnd(count(), true, false); setTargetColumn(); finishMovement("%1gE", count()); } else if (input.is('E')) { m_movetype = MoveInclusive; moveToNextWordEnd(count(), true, true, false); setTargetColumn(); finishMovement("%1E", count()); } else if (input.isControl('e')) { // FIXME: this should use the "scroll" option, and "count" if (cursorLineOnScreen() == 0) moveDown(1); scrollDown(1); finishMovement(); } else if (input.is('f')) { m_subsubmode = FtSubSubMode; m_movetype = MoveInclusive; m_subsubdata = input; } else if (input.is('F')) { m_subsubmode = FtSubSubMode; m_movetype = MoveExclusive; m_subsubdata = input; } else if (input.is('g') && !m_gflag) { m_gflag = true; } else if (input.is('g') || input.is('G')) { QString dotCommand = QString("%1G").arg(count()); if (input.is('G') && m_mvcount.isEmpty()) dotCommand = QString(QLatin1Char('G')); if (input.is('g')) m_gflag = false; int n = (input.is('g')) ? 1 : linesInDocument(); n = m_mvcount.isEmpty() ? n : count(); if (m_submode == NoSubMode || m_submode == ZSubMode || m_submode == CapitalZSubMode || m_submode == RegisterSubMode) { setPosition(firstPositionInLine(n)); handleStartOfLine(); } else { m_movetype = MoveLineWise; m_rangemode = RangeLineMode; setAnchor(); setPosition(firstPositionInLine(n)); } finishMovement(dotCommand); } else if (input.is('h') || input.isKey(Key_Left) || input.isBackspace()) { m_movetype = MoveExclusive; int n = qMin(count(), leftDist()); if (m_fakeEnd && block().length() > 1) ++n; moveLeft(n); setTargetColumn(); finishMovement("%1h", count()); } else if (input.is('H')) { setCursor(EDITOR(cursorForPosition(QPoint(0, 0)))); moveDown(qMax(count() - 1, 0)); handleStartOfLine(); finishMovement(); } else if (!isVisualMode() && (input.is('i') || input.isKey(Key_Insert))) { setDotCommand(QString(QLatin1Char('i'))); // setDotCommand("%1i", count()); breakEditBlock(); enterInsertMode(); updateMiniBuffer(); if (atEndOfLine()) moveLeft(); } else { handled = handleCommandMode2(input); } return handled; } EventResult FakeVimHandler::Private::handleCommandMode2(const Input &input) { EventResult handled = EventHandled; if (input.is('I')) { setUndoPosition(); setDotCommand(QString(QLatin1Char('I'))); // setDotCommand("%1I", count()); if (isVisualMode()) { int beginLine = lineForPosition(anchor()); int endLine = lineForPosition(position()); m_visualInsertCount = qAbs(endLine - beginLine); setPosition(qMin(position(), anchor())); } else { if (m_gflag) moveToStartOfLine(); else moveToFirstNonBlankOnLine(); m_gflag = false; //m_tc.clearSelection(); } breakEditBlock(); enterInsertMode(); } else if (input.isControl('i')) { jump(count()); } else if (input.is('j') || input.isKey(Key_Down) || input.isControl('j') || input.isControl('n')) { m_movetype = MoveLineWise; moveDown(count()); finishMovement("%1j", count()); } else if (input.is('J')) { setDotCommand("%1J", count()); beginEditBlock(); if (m_submode == NoSubMode) { for (int i = qMax(count(), 2) - 1; --i >= 0; ) { moveBehindEndOfLine(); setAnchor(); moveRight(); if (m_gflag) { removeText(currentRange()); } else { while (characterAtCursor() == ' ' || characterAtCursor() == '\t') moveRight(); removeText(currentRange()); cursor().insertText(QString(QLatin1Char(' '))); } } if (!m_gflag) moveLeft(); } endEditBlock(); finishMovement(); } else if (input.is('k') || input.isKey(Key_Up) || input.isControl('p')) { m_movetype = MoveLineWise; moveUp(count()); finishMovement("%1k", count()); } else if (input.is('l') || input.isKey(Key_Right) || input.is(' ')) { m_movetype = MoveExclusive; bool pastEnd = count() >= rightDist() - 1; moveRight(qMax(0, qMin(count(), rightDist() - (m_submode == NoSubMode)))); setTargetColumn(); if (pastEnd && isVisualMode()) m_visualTargetColumn = -1; finishMovement("%1l", count()); } else if (input.is('L')) { QTextCursor tc = EDITOR(cursorForPosition(QPoint(0, EDITOR(height())))); setCursor(tc); moveUp(qMax(count(), 1)); handleStartOfLine(); finishMovement(); } else if (input.isControl('l')) { // screen redraw. should not be needed } else if (input.is('m')) { if (m_gflag) { moveToStartOfLine(); moveRight(qMin(columnsOnScreen() / 2, rightDist()) - 1); setTargetColumn(); finishMovement(); } else { m_subsubmode = MarkSubSubMode; } } else if (input.is('M')) { QTextCursor tc = EDITOR(cursorForPosition(QPoint(0, EDITOR(height()) / 2))); setCursor(tc); handleStartOfLine(); finishMovement(); } else if (input.is('n') || input.is('N')) { if (hasConfig(ConfigUseCoreSearch)) { bool forward = (input.is('n')) ? m_lastSearchForward : !m_lastSearchForward; int pos = position(); emit q->findNextRequested(!forward); if (forward && pos == cursor().selectionStart()) { // if cursor is already positioned at the start of a find result, this is returned emit q->findNextRequested(false); } setPosition(cursor().selectionStart()); } else { searchNext(input.is('n')); finishMovement(); } } else if (isVisualMode() && (input.is('o') || input.is('O'))) { int pos = position(); setAnchorAndPosition(pos, anchor()); std::swap(m_positionPastEnd, m_anchorPastEnd); setTargetColumn(); if (m_positionPastEnd) m_visualTargetColumn = -1; } else if (input.is('o')) { setDotCommand("%1o", count()); setUndoPosition(); beginEditBlock(); moveToFirstNonBlankOnLine(); moveBehindEndOfLine(); insertText(QString("\n")); insertAutomaticIndentation(true); endEditBlock(); enterInsertMode(); } else if (input.is('O')) { setDotCommand("%1O", count()); setUndoPosition(); breakEditBlock(); enterInsertMode(); beginEditBlock(); moveToFirstNonBlankOnLine(); moveToStartOfLine(); insertText(QString("\n")); moveUp(); insertAutomaticIndentation(false); endEditBlock(); } else if (input.isControl('o')) { jump(-count()); } else if (input.is('p') || input.is('P')) { pasteText(input.is('p')); setTargetColumn(); setDotCommand("%1p", count()); finishMovement(); } else if (input.is('r')) { m_submode = ReplaceSubMode; } else if (!isVisualMode() && input.is('R')) { setUndoPosition(); breakEditBlock(); enterReplaceMode(); updateMiniBuffer(); } else if (input.isControl('r')) { int repeat = count(); while (--repeat >= 0) redo(); finishMovement(); } else if (input.is('s') && isVisualBlockMode()) { setUndoPosition(); Range range(position(), anchor(), RangeBlockMode); int beginLine = lineForPosition(anchor()); int endLine = lineForPosition(position()); m_visualInsertCount = qAbs(endLine - beginLine); setPosition(qMin(position(), anchor())); yankText(range, m_register); removeText(range); setDotCommand("%1s", count()); breakEditBlock(); enterInsertMode(); } else if (input.is('s')) { setUndoPosition(); leaveVisualMode(); if (atEndOfLine()) moveLeft(); setAnchor(); moveRight(qMin(count(), rightDist())); yankText(currentRange(), m_register); removeText(currentRange()); setDotCommand("%1s", count()); m_opcount.clear(); m_mvcount.clear(); breakEditBlock(); enterInsertMode(); } else if (input.is('S')) { m_movetype = MoveLineWise; setUndoPosition(); beginEditBlock(); if (!isVisualMode()) { const int line = cursorLine() + 1; const int anc = firstPositionInLine(line); const int pos = lastPositionInLine(line + count() - 1); setAnchorAndPosition(anc, pos); } setDotCommand("%1S", count()); breakEditBlock(); enterInsertMode(); m_submode = ChangeSubMode; endEditBlock(); finishMovement(); } else if (m_gflag && input.is('t')) { m_gflag = false; handleExCommand("tabnext"); } else if (input.is('t')) { m_movetype = MoveInclusive; m_subsubmode = FtSubSubMode; m_subsubdata = input; } else if (m_gflag && input.is('T')) { m_gflag = false; handleExCommand("tabprev"); } else if (input.is('T')) { m_movetype = MoveExclusive; m_subsubmode = FtSubSubMode; m_subsubdata = input; } else if (input.isControl('t')) { handleExCommand("pop"); } else if (!m_gflag && input.is('u')) { int repeat = count(); while (--repeat >= 0) undo(); finishMovement(); } else if (input.isControl('u')) { int sline = cursorLineOnScreen(); // FIXME: this should use the "scroll" option, and "count" moveUp(linesOnScreen() / 2); handleStartOfLine(); scrollToLine(cursorLine() - sline); finishMovement(); } else if (m_gflag && input.is('v')) { if (m_lastSelectionCursor.hasSelection()) { toggleVisualMode(m_lastSelectionMode); setCursor(m_lastSelectionCursor); } } else if (input.is('v')) { toggleVisualMode(VisualCharMode); } else if (input.is('V')) { toggleVisualMode(VisualLineMode); } else if (input.isControl('v')) { toggleVisualMode(VisualBlockMode); } else if (input.is('w')) { // tested // Special case: "cw" and "cW" work the same as "ce" and "cE" if the // cursor is on a non-blank - except if the cursor is on the last // character of a word: only the current word will be changed if (m_submode == ChangeSubMode) { moveToWordEnd(count(), false, true); m_movetype = MoveInclusive; } else { moveToNextWordStart(count(), false, true); m_movetype = MoveExclusive; } setTargetColumn(); finishMovement("%1w", count()); } else if (input.is('W')) { if (m_submode == ChangeSubMode) { moveToWordEnd(count(), true, true); m_movetype = MoveInclusive; } else { moveToNextWordStart(count(), true, true); m_movetype = MoveExclusive; } setTargetColumn(); finishMovement("%1W", count()); } else if (input.isControl('w')) { m_submode = WindowSubMode; } else if (input.is('x') && isNoVisualMode()) { // = "dl" m_movetype = MoveExclusive; m_submode = DeleteSubMode; const int n = qMin(count(), rightDist()); setAnchorAndPosition(position(), position() + n); setDotCommand("%1x", count()); finishMovement(); } else if (input.isControl('x')) { changeNumberTextObject(false); } else if (input.is('X')) { if (leftDist() > 0) { setAnchor(); moveLeft(qMin(count(), leftDist())); yankText(currentRange(), m_register); removeText(currentRange()); } finishMovement(); } else if ((m_submode == YankSubMode && input.is('y')) || (input.is('Y') && isNoVisualMode())) { setAnchor(); if (count() > 1) moveDown(count()-1); m_rangemode = RangeLineMode; m_movetype = MoveLineWise; m_submode = YankSubMode; finishMovement(); } else if (input.isControl('y')) { // FIXME: this should use the "scroll" option, and "count" if (cursorLineOnScreen() == linesOnScreen() - 1) moveUp(1); scrollUp(1); finishMovement(); } else if (input.is('y') && isNoVisualMode()) { setAnchor(); m_submode = YankSubMode; } else if (input.is('y') && isVisualCharMode()) { Range range(position(), anchor(), RangeCharMode); range.endPos++; // MoveInclusive yankText(range, m_register); setPosition(qMin(position(), anchor())); leaveVisualMode(); finishMovement(); } else if ((input.is('y') && isVisualLineMode()) || (input.is('Y') && isVisualLineMode()) || (input.is('Y') && isVisualCharMode())) { m_rangemode = RangeLineMode; yankText(currentRange(), m_register); setPosition(qMin(position(), anchor())); moveToStartOfLine(); leaveVisualMode(); finishMovement(); } else if ((input.is('y') || input.is('Y')) && isVisualBlockMode()) { m_rangemode = RangeBlockMode; yankText(currentRange(), m_register); setPosition(qMin(position(), anchor())); leaveVisualMode(); finishMovement(); } else if (input.is('z')) { m_submode = ZSubMode; } else if (input.is('Z')) { m_submode = CapitalZSubMode; } else if (!m_gflag && input.is('~') && !isVisualMode()) { m_movetype = MoveExclusive; if (!atEndOfLine()) { beginEditBlock(); setAnchor(); moveRight(qMin(count(), rightDist())); if (input.is('~')) { invertCase(currentRange()); setDotCommand("%1~", count()); } else if (input.is('u')) { downCase(currentRange()); setDotCommand("%1gu", count()); } else if (input.is('U')) { upCase(currentRange()); setDotCommand("%1gU", count()); } endEditBlock(); } finishMovement(); } else if ((m_gflag && input.is('~') && !isVisualMode()) || (m_gflag && input.is('u') && !isVisualMode()) || (m_gflag && input.is('U') && !isVisualMode())) { m_gflag = false; m_movetype = MoveExclusive; if (atEndOfLine()) moveLeft(); setAnchor(); m_submode = TransformSubMode; if (input.is('~')) m_subsubmode = InvertCaseSubSubMode; if (input.is('u')) m_subsubmode = DownCaseSubSubMode; else if (input.is('U')) m_subsubmode = UpCaseSubSubMode; } else if ((input.is('~') && isVisualMode()) || (m_gflag && input.is('u') && isVisualMode()) || (m_gflag && input.is('U') && isVisualMode())) { m_gflag = false; m_movetype = MoveExclusive; if (isVisualLineMode()) m_rangemode = RangeLineMode; else if (isVisualBlockMode()) m_rangemode = RangeBlockMode; leaveVisualMode(); m_submode = TransformSubMode; if (input.is('~')) m_subsubmode = InvertCaseSubSubMode; else if (input.is('u')) m_subsubmode = DownCaseSubSubMode; else if (input.is('U')) m_subsubmode = UpCaseSubSubMode; finishMovement(); } else if (input.is('[')) { m_submode = OpenSquareSubMode; } else if (input.is(']')) { m_submode = CloseSquareSubMode; } else if (input.isKey(Key_PageDown) || input.isControl('f')) { moveDown(count() * (linesOnScreen() - 2) - cursorLineOnScreen()); scrollToLine(cursorLine()); handleStartOfLine(); finishMovement(); } else if (input.isKey(Key_PageUp) || input.isControl('b')) { moveUp(count() * (linesOnScreen() - 2) + cursorLineOnScreen()); scrollToLine(cursorLine() + linesOnScreen() - 2); handleStartOfLine(); finishMovement(); } else if (input.isKey(Key_Delete)) { setAnchor(); moveRight(qMin(1, rightDist())); removeText(currentRange()); if (atEndOfLine()) moveLeft(); } else if (input.isKey(Key_BracketLeft) || input.isKey(Key_BracketRight)) { } else if (input.isControl(Key_BracketRight)) { handleExCommand("tag"); } else { //qDebug() << "IGNORED IN COMMAND MODE: " << key << text // << " VISUAL: " << m_visualMode; // if a key which produces text was pressed, don't mark it as unhandled // - otherwise the text would be inserted while being in command mode if (input.text().isEmpty()) { handled = EventUnhandled; } } m_positionPastEnd = (m_visualTargetColumn == -1) && isVisualMode(); return handled; } EventResult FakeVimHandler::Private::handleReplaceMode(const Input &input) { if (input.isEscape()) { moveLeft(qMin(1, leftDist())); setTargetColumn(); m_submode = NoSubMode; m_mode = CommandMode; finishMovement(); updateMiniBuffer(); } else if (input.isKey(Key_Left)) { breakEditBlock(); moveLeft(1); setTargetColumn(); } else if (input.isKey(Key_Right)) { breakEditBlock(); moveRight(1); setTargetColumn(); } else if (input.isKey(Key_Up)) { breakEditBlock(); moveUp(1); setTargetColumn(); } else if (input.isKey(Key_Down)) { breakEditBlock(); moveDown(1); } else { joinPreviousEditBlock(); if (!atEndOfLine()) { setAnchor(); moveRight(); m_lastDeletion += selectText(Range(position(), anchor())); removeText(currentRange()); } const QString text = input.text(); m_lastInsertion += text; setAnchor(); insertText(text); endEditBlock(); setTargetColumn(); } return EventHandled; } EventResult FakeVimHandler::Private::handleInsertMode(const Input &input) { //const int key = input.key; //const QString &text = input.text; if (input.isEscape()) { if (isVisualBlockMode() && !m_lastInsertion.contains('\n')) { leaveVisualMode(); joinPreviousEditBlock(); moveLeft(m_lastInsertion.size()); setAnchor(); int pos = position(); setTargetColumn(); for (int i = 0; i < m_visualInsertCount; ++i) { moveDown(); insertText(m_lastInsertion); } moveLeft(1); Range range(pos, position(), RangeBlockMode); yankText(range); setPosition(pos); setDotCommand("p"); endEditBlock(); } else { // Normal insertion. Start with '1', as one instance was // already physically inserted while typing. QString data; for (int i = 1; i < count(); ++i) data += m_lastInsertion; insertText(data); moveLeft(qMin(1, leftDist())); setTargetColumn(); leaveVisualMode(); breakEditBlock(); } g.dotCommand += m_lastInsertion; g.dotCommand += QChar(27); enterCommandMode(); m_submode = NoSubMode; m_ctrlVActive = false; m_opcount.clear(); m_mvcount.clear(); } else if (m_ctrlVActive) { insertInInsertMode(input.raw()); } else if (input.isControl('v')) { m_ctrlVActive = true; } else if (input.isControl('w')) { int endPos = position(); moveToNextWordStart(count(), false, false); setTargetColumn(); int beginPos = position(); Range range(beginPos, endPos, RangeCharMode); removeText(range); } else if (input.isKey(Key_Insert)) { if (m_mode == ReplaceMode) m_mode = InsertMode; else m_mode = ReplaceMode; } else if (input.isKey(Key_Left)) { moveLeft(count()); setTargetColumn(); breakEditBlock(); m_lastInsertion.clear(); } else if (input.isControl(Key_Left)) { moveToNextWordStart(count(), false, false); setTargetColumn(); breakEditBlock(); m_lastInsertion.clear(); } else if (input.isKey(Key_Down)) { //removeAutomaticIndentation(); m_submode = NoSubMode; moveDown(count()); breakEditBlock(); m_lastInsertion.clear(); } else if (input.isKey(Key_Up)) { //removeAutomaticIndentation(); m_submode = NoSubMode; moveUp(count()); breakEditBlock(); m_lastInsertion.clear(); } else if (input.isKey(Key_Right)) { moveRight(count()); setTargetColumn(); breakEditBlock(); m_lastInsertion.clear(); } else if (input.isControl(Key_Right)) { moveToNextWordStart(count(), false, true); moveRight(); // we need one more move since we are in insert mode setTargetColumn(); breakEditBlock(); m_lastInsertion.clear(); } else if (input.isKey(Key_Home)) { moveToStartOfLine(); setTargetColumn(); breakEditBlock(); m_lastInsertion.clear(); } else if (input.isKey(Key_End)) { if (count() > 1) moveDown(count() - 1); moveBehindEndOfLine(); setTargetColumn(); breakEditBlock(); m_lastInsertion.clear(); } else if (input.isReturn()) { joinPreviousEditBlock(); m_submode = NoSubMode; insertText(QString("\n")); m_lastInsertion += '\n'; insertAutomaticIndentation(true); setTargetColumn(); endEditBlock(); } else if (input.isBackspace()) { joinPreviousEditBlock(); m_justAutoIndented = 0; if (!m_lastInsertion.isEmpty() || hasConfig(ConfigBackspace, "start") || hasConfig(ConfigBackspace, "2")) { const int line = cursorLine() + 1; const Column col = cursorColumn(); QString data = lineContents(line); const Column ind = indentation(data); if (col.logical <= ind.logical && col.logical && startsWithWhitespace(data, col.physical)) { const int ts = config(ConfigTabStop).toInt(); const int newl = col.logical - 1 - (col.logical - 1) % ts; const QString prefix = tabExpand(newl); setLineContents(line, prefix + data.mid(col.physical)); moveToStartOfLine(); moveRight(prefix.size()); m_lastInsertion.clear(); // FIXME } else { setAnchor(); cursor().deletePreviousChar(); m_lastInsertion.chop(1); } setTargetColumn(); } endEditBlock(); } else if (input.isKey(Key_Delete)) { setAnchor(); cursor().deleteChar(); m_lastInsertion.clear(); } else if (input.isKey(Key_PageDown) || input.isControl('f')) { removeAutomaticIndentation(); moveDown(count() * (linesOnScreen() - 2)); breakEditBlock(); m_lastInsertion.clear(); } else if (input.isKey(Key_PageUp) || input.isControl('b')) { removeAutomaticIndentation(); moveUp(count() * (linesOnScreen() - 2)); breakEditBlock(); m_lastInsertion.clear(); } else if (input.isKey(Key_Tab)) { m_justAutoIndented = 0; if (hasConfig(ConfigExpandTab)) { const int ts = config(ConfigTabStop).toInt(); const int col = logicalCursorColumn(); QString str = QString(ts - col % ts, ' '); m_lastInsertion.append(str); insertText(str); setTargetColumn(); } else { insertInInsertMode(input.raw()); } } else if (input.isControl('d')) { // remove one level of indentation from the current line int shift = config(ConfigShiftWidth).toInt(); int tab = config(ConfigTabStop).toInt(); int line = cursorLine() + 1; int pos = firstPositionInLine(line); QString text = lineContents(line); 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; } removeText(Range(pos, pos+i)); //} else if (key >= control('a') && key <= control('z')) { // // ignore these } else if (input.isControl('p') || input.isControl('n')) { QTextCursor tc = EDITOR(textCursor()); moveToNextWordStart(count(), false, false); QString str = selectText(Range(position(), tc.position())); EDITOR(setTextCursor(tc)); emit q->simpleCompletionRequested(str, input.isControl('n')); } else if (!input.text().isEmpty()) { insertInInsertMode(input.text()); } else { // We don't want fancy stuff in insert mode. return EventHandled; } updateMiniBuffer(); return EventHandled; } void FakeVimHandler::Private::insertInInsertMode(const QString &text) { joinPreviousEditBlock(); m_justAutoIndented = 0; m_lastInsertion.append(text); insertText(text); if (hasConfig(ConfigSmartIndent) && isElectricCharacter(text.at(0))) { const QString leftText = block().text() .left(position() - 1 - block().position()); if (leftText.simplified().isEmpty()) { Range range(position(), position(), m_rangemode); indentText(range, text.at(0)); } } setTargetColumn(); endEditBlock(); m_ctrlVActive = false; } EventResult FakeVimHandler::Private::handleExMode(const Input &input) { if (input.isEscape()) { g.commandBuffer.clear(); enterCommandMode(); m_ctrlVActive = false; } else if (m_ctrlVActive) { g.commandBuffer.insertChar(input.raw()); m_ctrlVActive = false; } else if (input.isControl('v')) { m_ctrlVActive = true; return EventHandled; } else if (input.isBackspace()) { if (g.commandBuffer.isEmpty()) enterCommandMode(); else g.commandBuffer.deleteChar(); } else if (input.isKey(Key_Tab)) { // FIXME: Complete actual commands. g.commandBuffer.historyUp(); } else if (input.isKey(Key_Left)) { g.commandBuffer.moveLeft(); } else if (input.isReturn()) { showMessage(MessageCommand, g.commandBuffer.display()); handleExCommand(g.commandBuffer.contents()); g.commandBuffer.clear(); if (m_textedit || m_plaintextedit) leaveVisualMode(); } else if (input.isKey(Key_Up) || input.isKey(Key_PageUp)) { g.commandBuffer.historyUp(); } else if (input.isKey(Key_Down) || input.isKey(Key_PageDown)) { g.commandBuffer.historyDown(); } else if (!g.commandBuffer.handleInput(input)) { qDebug() << "IGNORED IN EX-MODE: " << input.key() << input.text(); return EventUnhandled; } updateMiniBuffer(); return EventHandled; } EventResult FakeVimHandler::Private::handleSearchSubSubMode(const Input &input) { if (input.isEscape()) { g.currentMessage.clear(); g.searchBuffer.clear(); setAnchorAndPosition(m_searchStartPosition, m_searchStartPosition); scrollToLine(m_searchFromScreenLine); enterCommandMode(); } else if (input.isBackspace()) { if (g.searchBuffer.isEmpty()) { enterCommandMode(); } else { g.searchBuffer.deleteChar(); } } else if (input.isKey(Key_Left)) { g.searchBuffer.moveLeft(); } else if (input.isKey(Key_Right)) { g.searchBuffer.moveRight(); } else if (input.isReturn()) { const QString &needle = g.searchBuffer.contents(); if (!needle.isEmpty()) m_lastSearch = needle; else g.searchBuffer.setContents(m_lastSearch); if (!m_lastSearch.isEmpty()) { updateFind(true); finishMovement(g.searchBuffer.prompt() + m_lastSearch + '\n'); } else { finishMovement(); } if (g.currentMessage.isEmpty()) showMessage(MessageCommand, g.searchBuffer.display()); enterCommandMode(); g.searchBuffer.clear(); } else if (input.isKey(Key_Up) || input.isKey(Key_PageUp)) { g.searchBuffer.historyUp(); } else if (input.isKey(Key_Down) || input.isKey(Key_PageDown)) { g.searchBuffer.historyDown(); } else if (input.isKey(Key_Tab)) { g.searchBuffer.insertChar(QChar(9)); } else if (!g.searchBuffer.handleInput(input)) { //qDebug() << "IGNORED IN SEARCH MODE: " << input.key() << input.text(); return EventUnhandled; } updateMiniBuffer(); if (!input.isReturn() && !input.isEscape()) updateFind(false); return EventHandled; } // This uses 1 based line counting. 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 == '.') { if (cmd.isEmpty()) return cursorLine() + 1; QChar c1 = cmd.at(0); if (c1 == '+' || c1 == '-') { // Repeat for things like .+4 cmd = cmd.mid(1); return cursorLine() + readLineCode(cmd); } return cursorLine() + 1; } if (c == '$') return linesInDocument(); if (c == '\'' && !cmd.isEmpty()) { if (cmd.isEmpty()) { showMessage(MessageError, msgMarkNotSet(QString())); return -1; } int m = mark(cmd.at(0).unicode()); if (m == -1) { showMessage(MessageError, msgMarkNotSet(cmd.at(0))); cmd = cmd.mid(1); return -1; } cmd = cmd.mid(1); return lineForPosition(m); } if (c == '-') { int n = readLineCode(cmd); return cursorLine() + 1 - (n == -1 ? 1 : n); } if (c == '+') { int n = readLineCode(cmd); return cursorLine() + 1 + (n == -1 ? 1 : n); } if (c == '\'' && !cmd.isEmpty()) { int pos = mark(cmd.at(0).unicode()); if (pos == -1) { showMessage(MessageError, msgMarkNotSet(cmd.at(0))); cmd = cmd.mid(1); return -1; } cmd = cmd.mid(1); return lineForPosition(pos); } 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; } // Parsing failed. cmd = c + cmd; return -1; } void FakeVimHandler::Private::setCurrentRange(const Range &range) { setAnchorAndPosition(range.beginPos, range.endPos); m_rangemode = range.rangemode; } Range FakeVimHandler::Private::rangeFromCurrentLine() const { Range range; int line = cursorLine() + 1; range.beginPos = firstPositionInLine(line); range.endPos = lastPositionInLine(line); return range; } // use handleExCommand for invoking commands that might move the cursor void FakeVimHandler::Private::handleCommand(const QString &cmd) { handleExCommand(cmd); } bool FakeVimHandler::Private::handleExSubstituteCommand(const ExCommand &cmd) // :substitute { QString flags; QRegExp pattern; QString replacement; int count = 0; if (cmd.cmd.startsWith("&&")) { flags = cmd.cmd.mid(2); if (flags.isEmpty()) flags = m_lastSubstituteFlags; pattern = m_lastSubstitutePattern; replacement = m_lastSubstituteReplacement; count = cmd.args.section(QLatin1Char(' '), 1, 1).toInt(); } else if (cmd.cmd.startsWith(QLatin1Char('&'))) { flags = cmd.cmd.mid(1); if (flags.isEmpty()) flags = m_lastSubstituteFlags; pattern = m_lastSubstitutePattern; replacement = m_lastSubstituteReplacement; count = cmd.args.section(QLatin1Char(' '), 1, 1).toInt(); } else if (cmd.matches("s", "substitute")) { flags = m_lastSubstituteFlags; if (flags.isEmpty()) flags = m_lastSubstituteFlags; pattern = m_lastSubstitutePattern; replacement = m_lastSubstituteReplacement; count = cmd.args.section(QLatin1Char(' '), 2, 2).toInt(); } else { QString line = cmd.cmd + ' ' + cmd.args; line = line.trimmed(); if (line.startsWith(_("substitute"))) line = line.mid(10); else if (line.startsWith('s') && line.size() > 1 && !isalpha(line.at(1).unicode())) line = line.mid(1); else return false; // we have /{pattern}/{string}/[flags] now if (line.isEmpty()) return false; const QChar separator = line.at(0); int pos1 = -1; int pos2 = -1; int i; for (i = 1; i < line.size(); ++i) { if (line.at(i) == separator && line.at(i - 1) != '\\') { pos1 = i; break; } } if (pos1 == -1) return false; for (++i; i < line.size(); ++i) { if (line.at(i) == separator && line.at(i - 1) != '\\') { pos2 = i; break; } } if (pos2 == -1) pos2 = line.size(); QString needle = line.mid(1, pos1 - 1); replacement = line.mid(pos1 + 1, pos2 - pos1 - 1); flags = line.mid(pos2 + 1); needle.replace('$', '\n'); needle.replace("\\\n", "\\$"); pattern = vimPatternToQtPattern(needle, hasConfig(ConfigSmartCase)); m_lastSubstituteFlags = flags; m_lastSubstitutePattern = pattern; m_lastSubstituteReplacement = replacement; } if (count == 0) count = 1; if (flags.contains('i')) pattern.setCaseSensitivity(Qt::CaseInsensitive); beginEditBlock(); const bool global = flags.contains('g'); for (int a = 0; a != count; ++a) { const Range range = cmd.range.endPos == 0 ? rangeFromCurrentLine() : cmd.range; const int beginLine = lineForPosition(range.beginPos); const int endLine = lineForPosition(range.endPos); for (int line = endLine; line >= beginLine; --line) { QString origText = lineContents(line); QString text = origText; int pos = 0; while (true) { pos = pattern.indexIn(text, pos, QRegExp::CaretAtZero); if (pos == -1) break; if (pattern.cap(0).isEmpty()) break; QStringList caps = pattern.capturedTexts(); QString matched = text.mid(pos, caps.at(0).size()); QString repl = replacement; for (int i = 1; i < caps.size(); ++i) repl.replace("\\" + QString::number(i), caps.at(i)); for (int i = 0; i < repl.size(); ++i) { if (repl.at(i) == '&' && (i == 0 || repl.at(i - 1) != '\\')) { repl.replace(i, 1, caps.at(0)); i += caps.at(0).size(); } } repl.replace("\\&", "&"); text = text.left(pos) + repl + text.mid(pos + matched.size()); pos += repl.size(); if (!global) break; } if (text != origText) setLineContents(line, text); } } moveToStartOfLine(); setTargetColumn(); endEditBlock(); return true; } bool FakeVimHandler::Private::handleExMapCommand(const ExCommand &cmd0) // :map { QByteArray modes; enum Type { Map, Noremap, Unmap } type; QByteArray cmd = cmd0.cmd.toLatin1(); // Strange formatting. But everything else is even uglier. if (cmd == "map") { modes = "nvo"; type = Map; } else if (cmd == "nm" || cmd == "nmap") { modes = "n"; type = Map; } else if (cmd == "vm" || cmd == "vmap") { modes = "v"; type = Map; } else if (cmd == "xm" || cmd == "xmap") { modes = "x"; type = Map; } else if (cmd == "smap") { modes = "s"; type = Map; } else if (cmd == "map!") { modes = "ic"; type = Map; } else if (cmd == "im" || cmd == "imap") { modes = "i"; type = Map; } else if (cmd == "lm" || cmd == "lmap") { modes = "l"; type = Map; } else if (cmd == "cm" || cmd == "cmap") { modes = "c"; type = Map; } else if (cmd == "no" || cmd == "noremap") { modes = "nvo"; type = Noremap; } else if (cmd == "nn" || cmd == "nnoremap") { modes = "n"; type = Noremap; } else if (cmd == "vn" || cmd == "vnoremap") { modes = "v"; type = Noremap; } else if (cmd == "xn" || cmd == "xnoremap") { modes = "x"; type = Noremap; } else if (cmd == "snor" || cmd == "snoremap") { modes = "s"; type = Noremap; } else if (cmd == "ono" || cmd == "onoremap") { modes = "o"; type = Noremap; } else if (cmd == "no!" || cmd == "noremap!") { modes = "ic"; type = Noremap; } else if (cmd == "ino" || cmd == "inoremap") { modes = "i"; type = Noremap; } else if (cmd == "ln" || cmd == "lnoremap") { modes = "l"; type = Noremap; } else if (cmd == "cno" || cmd == "cnoremap") { modes = "c"; type = Noremap; } else if (cmd == "unm" || cmd == "unmap") { modes = "nvo"; type = Unmap; } else if (cmd == "nun" || cmd == "nunmap") { modes = "n"; type = Unmap; } else if (cmd == "vu" || cmd == "vunmap") { modes = "v"; type = Unmap; } else if (cmd == "xu" || cmd == "xunmap") { modes = "x"; type = Unmap; } else if (cmd == "sunm" || cmd == "sunmap") { modes = "s"; type = Unmap; } else if (cmd == "ou" || cmd == "ounmap") { modes = "o"; type = Unmap; } else if (cmd == "unm!" || cmd == "unmap!") { modes = "ic"; type = Unmap; } else if (cmd == "iu" || cmd == "iunmap") { modes = "i"; type = Unmap; } else if (cmd == "lu" || cmd == "lunmap") { modes = "l"; type = Unmap; } else if (cmd == "cu" || cmd == "cunmap") { modes = "c"; type = Unmap; } else return false; QString args = cmd0.args; bool silent = false; bool unique = false; forever { if (eatString("", &args)) { silent = true; } else if (eatString("", &args)) { continue; } else if (eatString("", &args)) { continue; } else if (eatString("", &args)) { notImplementedYet(); continue; } else if (eatString("