mirror of
https://github.com/mawww/kakoune.git
synced 2024-12-19 17:31:44 +03:00
04536657d1
Fixes #331 A given session can be killed with 'echo kill | kak -p <session>'
20 lines
279 B
C++
20 lines
279 B
C++
#ifndef commands_hh_INCLUDED
|
|
#define commands_hh_INCLUDED
|
|
|
|
#include "array_view.hh"
|
|
|
|
namespace Kakoune
|
|
{
|
|
|
|
class Context;
|
|
class Key;
|
|
|
|
void register_commands();
|
|
void exec_keys(ConstArrayView<Key> keys, Context& context);
|
|
|
|
struct kill_session {};
|
|
|
|
}
|
|
|
|
#endif // commands_hh_INCLUDED
|