From 34c489170f94a23493b958514039cc839d6a3f0d Mon Sep 17 00:00:00 2001 From: Johannes Altmanninger Date: Tue, 19 Jul 2022 13:12:44 +0200 Subject: [PATCH] Elide temporary vector when completing register names Just like in the parent commit, this requires us to use a non-owning type. Technically, these strings all benefit from SSO, so there is no lifetime issue, but we can't deduce that from the types. I guess we could use InplaceString just as well. --- src/register_manager.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/register_manager.cc b/src/register_manager.cc index f5a6269b..16db41ba 100644 --- a/src/register_manager.cc +++ b/src/register_manager.cc @@ -58,7 +58,7 @@ const String& HistoryRegister::get_main(const Context&, size_t) return m_content.empty() ? String::ms_empty : m_content.front(); } -static const HashMap reg_names = { +static const HashMap reg_names { { "slash", '/' }, { "dquote", '"' }, { "pipe", '|' }, @@ -101,7 +101,7 @@ void RegisterManager::add_register(Codepoint c, std::unique_ptr reg) CandidateList RegisterManager::complete_register_name(StringView prefix, ByteCount cursor_pos) const { - return complete(prefix, cursor_pos, reg_names | transform([](auto& i) { return i.key; }) | gather>()); + return complete(prefix, cursor_pos, reg_names | transform([](auto& i) { return i.key; })); } }