Files
ghostty/macos/Sources/Helpers/Extensions/ObjectIdentifier+Extension.swift
Mitchell Hashimoto 341d8bdf75 macos: AppleScript windows/tabs
Add ScriptWindow and ScriptTab classes to expose window/tab hierarchy
to AppleScript, along with the corresponding sdef definitions.
2026-03-06 07:59:58 -08:00

8 lines
134 B
Swift

import Foundation
extension ObjectIdentifier {
var hexString: String {
String(UInt(bitPattern: self), radix: 16)
}
}