kakoune/src/commands.hh
Maxime Coste 7195100609 Re-introduce kill_session::exit_status, @lenormf was right
As discussed in #2186, in the end we need the exit status for the
case where the local client exited first (the server forked to
background) then another client trigger the kill command.
2018-07-19 19:27:56 +10:00

17 lines
188 B
C++

#ifndef commands_hh_INCLUDED
#define commands_hh_INCLUDED
namespace Kakoune
{
void register_commands();
struct kill_session
{
int exit_status;
};
}
#endif // commands_hh_INCLUDED