Hello,
I have encountered the following bug. If >> characters are inside a string literal, the C++ syntax parser breaks and the list of functions (Ctrl+R) is not available anymore.
try {
} catch (const std::exception& er) {
std::cerr << ">> Caught exception \n";
} catch (...) {
std::cerr << ">> Caught wildcard exception \n";
}