blob: 95c4784bf251a2041addd4d12edb6b3d5d9a038c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
#include "alias_registry.hh"
#include "command_manager.hh"
namespace Kakoune
{
void AliasRegistry::add_alias(String alias, String command)
{
kak_assert(not alias.empty());
kak_assert(CommandManager::instance().command_defined(command));
m_aliases[alias] = std::move(command);
}
void AliasRegistry::remove_alias(const String& alias)
{
auto it = m_aliases.find(alias);
if (it != m_aliases.end())
m_aliases.erase(it);
}
StringView AliasRegistry::operator[](const String& alias) const
{
auto it = m_aliases.find(alias);
if (it != m_aliases.end())
return it->second;
else if (m_parent)
return (*m_parent)[alias];
else
return StringView{};
}
std::vector<StringView> AliasRegistry::aliases_for(StringView command) const
{
std::vector<StringView> res;
if (m_parent)
res = m_parent->aliases_for(command);
for (auto& alias : m_aliases)
{
if (alias.second == command)
res.push_back(alias.first);
}
return res;
}
}
|