2014-10-30 00:22:54 +01:00
|
|
|
#ifndef alias_registry_hh_INCLUDED
|
|
|
|
#define alias_registry_hh_INCLUDED
|
|
|
|
|
|
|
|
#include "safe_ptr.hh"
|
|
|
|
#include "string.hh"
|
2014-12-16 19:57:19 +01:00
|
|
|
#include "unordered_map.hh"
|
2014-10-30 00:22:54 +01:00
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
|
|
|
class AliasRegistry : public SafeCountable
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
AliasRegistry(AliasRegistry& parent) : m_parent(&parent) {}
|
|
|
|
void add_alias(String alias, String command);
|
|
|
|
void remove_alias(const String& alias);
|
|
|
|
StringView operator[](const String& name) const;
|
|
|
|
|
2015-09-06 19:09:32 +02:00
|
|
|
using AliasMap = UnorderedMap<String, String, MemoryDomain::Aliases>;
|
|
|
|
using iterator = AliasMap::const_iterator;
|
|
|
|
iterator begin() const { return m_aliases.begin(); }
|
|
|
|
iterator end() const { return m_aliases.end(); }
|
|
|
|
|
2015-01-12 14:58:41 +01:00
|
|
|
Vector<StringView> aliases_for(StringView command) const;
|
2014-10-30 00:22:54 +01:00
|
|
|
|
|
|
|
private:
|
2014-10-30 15:00:42 +01:00
|
|
|
friend class Scope;
|
2014-10-30 00:22:54 +01:00
|
|
|
AliasRegistry() {}
|
|
|
|
|
2015-02-19 14:58:25 +01:00
|
|
|
SafePtr<AliasRegistry> m_parent;
|
2015-01-14 20:16:32 +01:00
|
|
|
UnorderedMap<String, String, MemoryDomain::Aliases> m_aliases;
|
2014-10-30 00:22:54 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // alias_registry_hh_INCLUDED
|