1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#ifndef normal_hh_INCLUDED #define normal_hh_INCLUDED #include "keys.hh" #include <functional> #include <unordered_map> namespace Kakoune { class Context; using KeyMap = std::unordered_map<Key, std::function<void (Context& context, int param)>>; extern KeyMap keymap; } #endif // normal_hh_INCLUDED