mirror of
https://github.com/mawww/kakoune.git
synced 2024-12-18 17:02:06 +03:00
18 lines
233 B
C++
18 lines
233 B
C++
#ifndef commands_hh_INCLUDED
|
|
#define commands_hh_INCLUDED
|
|
|
|
#include "keys.hh"
|
|
|
|
namespace Kakoune
|
|
{
|
|
|
|
class Context;
|
|
|
|
void register_commands();
|
|
void exec_keys(const KeyList& keys, Context& context);
|
|
|
|
}
|
|
|
|
#endif // commands_hh_INCLUDED
|
|
|