mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-04-06 07:38:21 +00:00
Add ScriptWindow and ScriptTab classes to expose window/tab hierarchy to AppleScript, along with the corresponding sdef definitions.
8 lines
134 B
Swift
8 lines
134 B
Swift
import Foundation
|
|
|
|
extension ObjectIdentifier {
|
|
var hexString: String {
|
|
String(UInt(bitPattern: self), radix: 16)
|
|
}
|
|
}
|