OSC handling, handle OSC change window title command

This commit is contained in:
Mitchell Hashimoto
2022-11-14 10:46:40 -08:00
parent 56504a342f
commit 4ced2290b3
8 changed files with 127 additions and 4 deletions

View File

@@ -37,7 +37,7 @@ pub fn BlockingQueue(
// The type we use for queue size types. We can optimize this
// in the future to be the correct bit-size for our preallocated
// size for this queue.
const Size = u32;
pub const Size = u32;
// The bounds of this queue. We recast this to Size so we can do math.
const bounds = @intCast(Size, capacity);