1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-12-19 01:11:36 +03:00
kakoune/src/commands.hh

18 lines
233 B
C++
Raw Normal View History

2012-05-07 07:13:34 +04:00
#ifndef commands_hh_INCLUDED
#define commands_hh_INCLUDED
#include "keys.hh"
2012-05-07 07:13:34 +04:00
namespace Kakoune
{
2014-01-28 00:28:38 +04:00
class Context;
2012-05-07 07:13:34 +04:00
void register_commands();
void exec_keys(const KeyList& keys, Context& context);
2012-05-07 07:13:34 +04:00
}
#endif // commands_hh_INCLUDED