kakoune/src/commands.hh
2015-09-02 13:34:18 +01:00

20 lines
280 B
C++

#ifndef commands_hh_INCLUDED
#define commands_hh_INCLUDED
#include "array_view.hh"
namespace Kakoune
{
class Context;
struct Key;
void register_commands();
void exec_keys(ConstArrayView<Key> keys, Context& context);
struct kill_session {};
}
#endif // commands_hh_INCLUDED