diff --git a/macos/Sources/Ghostty/SurfaceView.swift b/macos/Sources/Ghostty/SurfaceView.swift index d187c9394..7a5bbb081 100644 --- a/macos/Sources/Ghostty/SurfaceView.swift +++ b/macos/Sources/Ghostty/SurfaceView.swift @@ -133,7 +133,12 @@ extension Ghostty { providers.forEach { provider in _ = provider.loadObject(ofClass: URL.self) { url, _ in guard let url = url else { return } - AppDelegate.logger.warning("OPEN url=\(url.path)") + DispatchQueue.main.async { + surfaceView.insertText( + url.path, + replacementRange: NSMakeRange(0, 0) + ) + } } }