7195100609
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.
17 lines
188 B
C++
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
|