#ifndef keys_hh_INCLUDED #define keys_hh_INCLUDED #include #include "string.hh" namespace Kakoune { struct Key { enum class Modifiers { None = 0, Control = 1, Alt = 2, ControlAlt = 3 }; Modifiers modifiers; Character key; constexpr Key(Modifiers modifiers, Character key) : modifiers(modifiers), key(key) {} constexpr bool operator==(const Key& other) const { return modifiers == other.modifiers and key == other.key; } }; typedef std::vector KeyList; KeyList parse_keys(const String& str); } namespace std { template<> struct hash : unary_function { size_t operator()(const Kakoune::Key& key) const { return static_cast(key.modifiers) * 1024 + key.key; } }; } #endif // keys_hh_INCLUDED