You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
child_process.spawn() catch|err|fatal("child process could not be created: {}", .{err});
79
+
child_process.spawn(io) catch|err|fatal("child process could not be created: {}", .{err});
83
80
child_process.waitForSpawn() catch|err|fatal("child process could not be created: {}", .{err});
84
81
85
82
// Language servers can support multiple communication channels (e.g. stdio, pipes, sockets).
@@ -211,14 +208,14 @@ pub fn main() !void {
211
208
);
212
209
213
210
// The "exit" notification will ask the server to exit its process. Ideally we should wait with a timeout in case the server is not behaving correctly.
0 commit comments