///////////////////////////////////////////////////////////////////////////
| 49 | |
| 50 | //////////////////////////////////////////////////////////////////////////////// |
| 51 | int CmdCompletionAliases::execute(std::string& output) { |
| 52 | for (const auto& alias : Context::getContext().config) |
| 53 | if (alias.first.substr(0, 6) == "alias.") output += alias.first.substr(6) + '\n'; |
| 54 | |
| 55 | return 0; |
| 56 | } |
| 57 | |
| 58 | //////////////////////////////////////////////////////////////////////////////// |
nothing calls this directly
no outgoing calls
no test coverage detected