macos: Help menu goes to website docs (#3990)

This commit is contained in:
Mitchell Hashimoto
2024-12-29 19:32:13 -08:00
committed by GitHub

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