fakevim: some refactoring. also, implement QTCREATORBUG-1335

This commit is contained in:
hjk
2010-05-05 16:05:49 +02:00
parent c8f01c8a89
commit 325bc6664f
2 changed files with 21 additions and 4 deletions

View File

@@ -717,7 +717,13 @@ public:
static struct GlobalData
{
GlobalData() { inReplay = false; inputTimer = -1; }
GlobalData()
{
inReplay = false;
inputTimer = -1;
searchHistoryIndex = 0;
commandHistoryIndex = 0;
}
// Input.
QVector<Input> pendingInput;