From f172b3d6166e8f9ff2fae992d42cdcf5ab6f54fb Mon Sep 17 00:00:00 2001 From: Aarnav Tale Date: Sun, 21 Apr 2024 18:59:50 -0400 Subject: [PATCH] tcp: config docs need to reflect the bind address prefixes --- src/config/Config.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config/Config.zig b/src/config/Config.zig index a7f8c560f..edf3caa4b 100644 --- a/src/config/Config.zig +++ b/src/config/Config.zig @@ -1355,8 +1355,8 @@ keybind: Keybinds = .{}, /// If set, Ghostty will start a TCP server on the specified socket path. Valid /// values can include a valid Unix socket path or an IP address and port. For -/// example, `0.0.0.0:9393` will start a TCP server on all interfaces on port -/// 9393. A value such as `/tmp/ghostty.sock` will start a socket on that path. +/// example, `tcp://0.0.0.0:9393` will start a TCP server on all interfaces on +/// port 9393 while `unix:///tmp/ghostty.sock` will start a Unix socket server. @"remote-tcp-socket": ?[:0]const u8 = null, /// The maximum number of connections (default 10) that can be made to the