summaryrefslogtreecommitdiff
path: root/src/remote.hh
diff options
context:
space:
mode:
authorMaxime Coste <mawww@kakoune.org>2017-08-28 13:12:15 +0700
committerMaxime Coste <mawww@kakoune.org>2017-08-28 13:12:45 +0700
commite80b36b495db30c6c0dd5dab577822aa3959d78e (patch)
treefa493724e588516c0f124ef86cf142f485f04a62 /src/remote.hh
parent430b7882eba9912dd722d4c55fbe03403cccd699 (diff)
Expose client pid as $kak_client_pid
As requested in #1414
Diffstat (limited to 'src/remote.hh')
-rw-r--r--src/remote.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/remote.hh b/src/remote.hh
index 84382dc4..f716d243 100644
--- a/src/remote.hh
+++ b/src/remote.hh
@@ -30,7 +30,7 @@ class RemoteClient
{
public:
RemoteClient(StringView session, std::unique_ptr<UserInterface>&& ui,
- const EnvVarMap& env_vars, StringView init_command,
+ int pid, const EnvVarMap& env_vars, StringView init_command,
Optional<BufferCoord> init_coord);
const Optional<int>& exit_status() const { return m_exit_status; }