2012-05-07 05:13:34 +02:00
|
|
|
#ifndef commands_hh_INCLUDED
|
|
|
|
#define commands_hh_INCLUDED
|
|
|
|
|
2015-01-06 14:40:56 +01:00
|
|
|
#include "array_view.hh"
|
2013-02-18 18:57:08 +01:00
|
|
|
|
2012-05-07 05:13:34 +02:00
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2014-01-27 21:28:38 +01:00
|
|
|
class Context;
|
2015-09-02 14:34:18 +02:00
|
|
|
struct Key;
|
2013-02-18 18:57:08 +01:00
|
|
|
|
2012-05-07 05:13:34 +02:00
|
|
|
void register_commands();
|
2015-03-09 14:48:41 +01:00
|
|
|
void exec_keys(ConstArrayView<Key> keys, Context& context);
|
2012-05-07 05:13:34 +02:00
|
|
|
|
2015-08-26 20:34:19 +02:00
|
|
|
struct kill_session {};
|
|
|
|
|
2012-05-07 05:13:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // commands_hh_INCLUDED
|