kakoune/src/commands.hh

18 lines
258 B
C++
Raw Normal View History

2012-05-07 05:13:34 +02:00
#ifndef commands_hh_INCLUDED
#define commands_hh_INCLUDED
#include "keys.hh"
#include "memoryview.hh"
2012-05-07 05:13:34 +02:00
namespace Kakoune
{
2014-01-27 21:28:38 +01:00
class Context;
2012-05-07 05:13:34 +02:00
void register_commands();
void exec_keys(memoryview<Key> keys, Context& context);
2012-05-07 05:13:34 +02:00
}
#endif // commands_hh_INCLUDED