X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fuisupport%2Ftabcompleter.cpp;h=33c0dfbda8861688e01918fe368b6c0a75462bc8;hb=0e04bcf8b70e86b66020be74dcae4c210a97ea25;hp=fbd69047c9c62a3dde1968d972660adac55ae32b;hpb=f5539e2ce05f5beac9d789ec615ded695f325fc7;p=quassel.git diff --git a/src/uisupport/tabcompleter.cpp b/src/uisupport/tabcompleter.cpp index fbd69047..33c0dfbd 100644 --- a/src/uisupport/tabcompleter.cpp +++ b/src/uisupport/tabcompleter.cpp @@ -41,11 +41,11 @@ TabCompleter::TabCompleter(InputLine *inputLine_) } void TabCompleter::buildCompletionList() { - completionList.clear(); + completionMap.clear(); // this is the first time tab is pressed -> build up the completion list and it's iterator QModelIndex currentIndex = Client::bufferModel()->currentIndex(); if(!currentIndex.data(NetworkModel::BufferIdRole).isValid()) { - nextCompletion = completionList.begin(); + nextCompletion = completionMap.begin(); return; } @@ -70,18 +70,15 @@ void TabCompleter::buildCompletionList() { */ QString tabAbbrev = inputLine->text().left(inputLine->cursorPosition()).section(' ',-1,-1); - QRegExp regex(QString("^[^a-zA-Z]*").append(tabAbbrev), Qt::CaseInsensitive); - QMap sortMap; + QRegExp regex(QString("^[^a-zA-Z]*").append(QRegExp::escape(tabAbbrev)), Qt::CaseInsensitive); foreach(IrcUser *ircUser, channel->ircUsers()) { if(regex.indexIn(ircUser->nick()) > -1) { - sortMap[ircUser->nick().toLower()] = ircUser->nick(); + completionMap[ircUser->nick().toLower()] = ircUser->nick(); } } - foreach (QString str, sortMap) - completionList << str; - nextCompletion = completionList.begin(); + nextCompletion = completionMap.begin(); lastCompletionLength = tabAbbrev.length(); } @@ -99,7 +96,7 @@ void TabCompleter::complete() { enabled = true; } - if (nextCompletion != completionList.end()) { + if (nextCompletion != completionMap.end()) { // clear previous completion for (int i = 0; i < lastCompletionLength; i++) { inputLine->backspace(); @@ -120,7 +117,10 @@ void TabCompleter::complete() { // we're at the end of the list -> start over again } else { - nextCompletion = completionList.begin(); + if(!completionMap.isEmpty()) { + nextCompletion = completionMap.begin(); + complete(); + } } }