2014-07-11 01:27:04 +02:00
|
|
|
#ifndef face_registry_hh_INCLUDED
|
|
|
|
#define face_registry_hh_INCLUDED
|
|
|
|
|
|
|
|
#include "face.hh"
|
|
|
|
#include "utils.hh"
|
|
|
|
#include "completion.hh"
|
|
|
|
|
|
|
|
#include <unordered_map>
|
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
|
|
|
class FaceRegistry : public Singleton<FaceRegistry>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
FaceRegistry();
|
|
|
|
|
2014-07-12 12:19:35 +02:00
|
|
|
Face operator[](const String& facedesc);
|
2014-07-11 01:27:04 +02:00
|
|
|
void register_alias(const String& name, const String& facedesc,
|
|
|
|
bool override = false);
|
|
|
|
|
|
|
|
CandidateList complete_alias_name(StringView prefix,
|
|
|
|
ByteCount cursor_pos) const;
|
|
|
|
private:
|
|
|
|
std::unordered_map<String, Face> m_aliases;
|
|
|
|
};
|
|
|
|
|
2014-07-12 12:19:35 +02:00
|
|
|
inline Face get_face(const String& facedesc)
|
2014-07-11 01:27:04 +02:00
|
|
|
{
|
2014-08-15 00:51:24 +02:00
|
|
|
if (FaceRegistry::has_instance())
|
|
|
|
return FaceRegistry::instance()[facedesc];
|
|
|
|
return Face{};
|
2014-07-11 01:27:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // face_registry_hh_INCLUDED
|
|
|
|
|