2012-05-07 05:13:34 +02:00
|
|
|
#ifndef commands_hh_INCLUDED
|
|
|
|
#define commands_hh_INCLUDED
|
|
|
|
|
2013-02-18 18:57:08 +01:00
|
|
|
#include "keys.hh"
|
|
|
|
|
2012-05-07 05:13:34 +02:00
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2013-02-18 18:57:08 +01:00
|
|
|
struct Context;
|
|
|
|
|
2012-05-07 05:13:34 +02:00
|
|
|
void register_commands();
|
2013-02-18 18:57:08 +01:00
|
|
|
void exec_keys(const KeyList& keys, Context& context);
|
2012-05-07 05:13:34 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // commands_hh_INCLUDED
|
|
|
|
|