mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-14 15:56:13 +03:00
update TODO
This commit is contained in:
4
TODO.md
4
TODO.md
@ -3,3 +3,7 @@ Performance:
|
|||||||
* libuv allocates on every read, we should use a read buffer pool
|
* libuv allocates on every read, we should use a read buffer pool
|
||||||
* update cells for drawing should just happen once per frame
|
* update cells for drawing should just happen once per frame
|
||||||
* update cells should only update the changed cells
|
* update cells should only update the changed cells
|
||||||
|
|
||||||
|
Correctness:
|
||||||
|
|
||||||
|
* `exit` in the shell should close the window
|
||||||
|
@ -129,7 +129,7 @@ pub fn create(alloc: Allocator, loop: libuv.Loop) !*Window {
|
|||||||
return error.CommandNotFound;
|
return error.CommandNotFound;
|
||||||
defer alloc.free(path);
|
defer alloc.free(path);
|
||||||
|
|
||||||
var env = std.BufMap.init(alloc);
|
var env = try std.process.getEnvMap(alloc);
|
||||||
defer env.deinit();
|
defer env.deinit();
|
||||||
try env.put("TERM", "dumb");
|
try env.put("TERM", "dumb");
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user