macos: Help menu goes to website docs

This commit is contained in:
Mitchell Hashimoto
2024-12-29 19:27:14 -08:00
parent 06389b280a
commit 37c5f5a123

View File

@ -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)
}