| 1516 | |
| 1517 | |
| 1518 | void cClientHandle::HandleTabCompletion(const AString & a_Text) |
| 1519 | { |
| 1520 | AStringVector Results; |
| 1521 | m_Player->GetWorld()->TabCompleteUserName(a_Text, Results); |
| 1522 | cRoot::Get()->GetPluginManager()->TabCompleteCommand(a_Text, Results, m_Player); |
| 1523 | if (Results.empty()) |
| 1524 | { |
| 1525 | return; |
| 1526 | } |
| 1527 | std::sort(Results.begin(), Results.end()); |
| 1528 | SendTabCompletionResults(Results); |
| 1529 | } |
| 1530 | |
| 1531 | |
| 1532 |
no test coverage detected