From 37c5f5a1233d4bddf1ece15963c06da4c302195b Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sun, 29 Dec 2024 19:27:14 -0800 Subject: [PATCH] macos: Help menu goes to website docs --- macos/Sources/App/macOS/AppDelegate.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macos/Sources/App/macOS/AppDelegate.swift b/macos/Sources/App/macOS/AppDelegate.swift index 7ebf52d3d..6d27bdf94 100644 --- a/macos/Sources/App/macOS/AppDelegate.swift +++ b/macos/Sources/App/macOS/AppDelegate.swift @@ -669,7 +669,7 @@ class AppDelegate: NSObject, } @IBAction func showHelp(_ sender: Any) { - guard let url = URL(string: "https://github.com/ghostty-org/ghostty") else { return } + guard let url = URL(string: "https://ghostty.org/docs") else { return } NSWorkspace.shared.open(url) }