corregit el case en algunes respostes de console

This commit is contained in:
2026-03-30 23:33:58 +02:00
parent b164c11ba7
commit 705a9fc7cd
2 changed files with 75 additions and 64 deletions

View File

@@ -100,7 +100,7 @@ class Console {
std::string saved_input_; // guarda input_line_ al empezar a navegar
// Estado de autocompletado (TAB)
std::vector<std::string> tab_matches_; // Comandos que coinciden con el prefijo actual
int tab_index_{-1}; // Índice actual en tab_matches_
std::vector<std::string> tab_matches_; // Comandos que coinciden con el prefijo actual
int tab_index_{-1}; // Índice actual en tab_matches_
std::unordered_map<std::string, std::vector<std::string>> tab_completions_; // Mapa pre-calculado en constructor
};