18 lines
257 B
C++
18 lines
257 B
C++
#ifndef commands_hh_INCLUDED
|
|
#define commands_hh_INCLUDED
|
|
|
|
#include "keys.hh"
|
|
#include "array_view.hh"
|
|
|
|
namespace Kakoune
|
|
{
|
|
|
|
class Context;
|
|
|
|
void register_commands();
|
|
void exec_keys(ArrayView<Key> keys, Context& context);
|
|
|
|
}
|
|
|
|
#endif // commands_hh_INCLUDED
|