Quote Originally Posted by evgenM View Post
something strange:

completion work for cause
Qt Code:
  1. str.append("a").
To copy to clipboard, switch view to plain text mode 
but not for
Qt Code:
  1. str.split("a").
To copy to clipboard, switch view to plain text mode 
what the difference?
The reason is that in the Qt source qstring.h, the function split() is declared as
Qt Code:
  1. QStringList split(const QChar &sep, SplitBehavior behavior = KeepEmptyParts,
  2. Qt::CaseSensitivity cs = Qt::CaseSensitive) const Q_REQUIRED_RESULT;
To copy to clipboard, switch view to plain text mode 
and ctags gets confused by the Q_REQUIRED_RESULT macro. Thanks for reporting it, evgenM, I'll try to fix that problem.