1
1
mirror of https://github.com/mawww/kakoune.git synced 2025-01-05 10:30:41 +03:00
kakoune/src/normal.hh
Maxime Coste b2621ca140 Move insert/erase methods from normal.cc to member functions in SelectionList
It does look like the Editor class is attempting a sneaky comeback...
2014-05-25 20:28:32 +01:00

20 lines
306 B
C++

#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