mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-14 15:56:13 +03:00
rename Pty.zig to pty.zig
This commit is contained in:
@ -24,7 +24,7 @@ const renderer = @import("renderer.zig");
|
||||
const termio = @import("termio.zig");
|
||||
const objc = @import("objc");
|
||||
const imgui = @import("imgui");
|
||||
const Pty = @import("Pty.zig").Pty;
|
||||
const Pty = @import("pty.zig").Pty;
|
||||
const font = @import("font/main.zig");
|
||||
const Command = @import("Command.zig");
|
||||
const trace = @import("tracy").trace;
|
||||
|
@ -285,7 +285,7 @@ pub const GlobalState = struct {
|
||||
};
|
||||
test {
|
||||
_ = @import("circ_buf.zig");
|
||||
_ = @import("Pty.zig");
|
||||
_ = @import("pty.zig");
|
||||
_ = @import("Command.zig");
|
||||
_ = @import("font/main.zig");
|
||||
_ = @import("apprt.zig");
|
||||
|
@ -63,7 +63,7 @@ pub fn get(alloc: Allocator) !Entry {
|
||||
// Note: we wrap our getent call in a /bin/sh login shell because
|
||||
// some operating systems (NixOS tested) don't set the PATH for various
|
||||
// utilities properly until we get a login shell.
|
||||
const Pty = @import("../Pty.zig").Pty;
|
||||
const Pty = @import("../pty.zig").Pty;
|
||||
var pty = try Pty.open(.{});
|
||||
defer pty.deinit();
|
||||
var cmd: internal_os.FlatpakHostCommand = .{
|
||||
|
Reference in New Issue
Block a user