From 202e639d97bada1220d542821b2063e41f46d29f Mon Sep 17 00:00:00 2001 From: "Jeffrey C. Ollie" Date: Tue, 27 Jan 2026 15:14:08 -0600 Subject: [PATCH] osc: clean up comments in OSC 99 --- src/terminal/osc/parsers/kitty_desktop_notification.zig | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/terminal/osc/parsers/kitty_desktop_notification.zig b/src/terminal/osc/parsers/kitty_desktop_notification.zig index 2ce8215e5..76670cb33 100644 --- a/src/terminal/osc/parsers/kitty_desktop_notification.zig +++ b/src/terminal/osc/parsers/kitty_desktop_notification.zig @@ -284,10 +284,10 @@ pub fn parsePackedStruct(comptime T: type, str: []const u8) T { return result; } -/// Characters that are valid in a metadata value. Including `=` is -/// "technically" against the spec but is needed since Base64 encoded values -/// (with padding) are valid for some options. Including `?` is "technically" -/// against the spec but is needed since it is a valid value for the `p` option. +/// Characters that are valid in a metadata value. Including `=` is technically +/// against the spec but is needed since Base64 encoded values (with padding) +/// are valid for some options. Including `?` is technically against the spec +/// but is needed since it is a valid value for the `p` option. const valid_metadata_value_characters: []const u8 = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-_/+.,(){}[]*&^%$#@!`~=?"; fn isValidMetadataValue(str: []const u8) bool {