I'm asking if it is possible to call multiple times a completer on a QLineEdit after inserting a separator character. Let me explain with an example:
Let's say we have
wordList << "alpha" << "omega" << "omicron" << "zeta";
completer->setCaseSensitivity(Qt::CaseInsensitive);
lineEdit->setCompleter(completer);
QStringList wordList;
wordList << "alpha" << "omega" << "omicron" << "zeta";
QLineEdit *lineEdit = new QLineEdit(this);
QCompleter *completer = new QCompleter(wordList, this);
completer->setCaseSensitivity(Qt::CaseInsensitive);
lineEdit->setCompleter(completer);
To copy to clipboard, switch view to plain text mode
typing on the lineedit pops the completer; I choose one of the entry in the list, then type a delimeter character like ',' and start typing again triggering again the completer; here a mockup

I dunno if a similar implementation was already adopted by any app; if so, please tell me which one.
Very thanks
Bookmarks