mirror of
https://github.com/luanti-org/luanti.git
synced 2025-07-22 17:18:39 +00:00
Remove unneccessary space for tab completion
This commit is contained in:
parent
bbf6f4fc25
commit
3ae8b92be6
1 changed files with 2 additions and 2 deletions
|
@ -511,7 +511,7 @@ void ChatPrompt::nickCompletion(const std::list<std::string>& names, bool backwa
|
||||||
{
|
{
|
||||||
std::wstring completion = narrow_to_wide(*i);
|
std::wstring completion = narrow_to_wide(*i);
|
||||||
if (prefix_start == 0)
|
if (prefix_start == 0)
|
||||||
completion += L":";
|
completion += L": ";
|
||||||
completions.push_back(completion);
|
completions.push_back(completion);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -541,7 +541,7 @@ void ChatPrompt::nickCompletion(const std::list<std::string>& names, bool backwa
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
std::wstring replacement = completions[replacement_index] + L" ";
|
std::wstring replacement = completions[replacement_index];
|
||||||
if (word_end < m_line.size() && isspace(word_end))
|
if (word_end < m_line.size() && isspace(word_end))
|
||||||
++word_end;
|
++word_end;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue