mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-08-24 16:11:43 +00:00
osc: clean up comments in OSC 99
This commit is contained in:
committed by
Mitchell Hashimoto
parent
93bf7d8104
commit
202e639d97
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user