From 4edc89f2b2f3b2a7a2d63595cbe2019d55c96bb0 Mon Sep 17 00:00:00 2001 From: Yee Cheng Chin Date: Thu, 9 Jan 2025 09:49:52 -0800 Subject: [PATCH] Fix menu item "MacVim Website" to go to correct URL We are no longer using the default GitHub Pages URL and have a proper domain, so use that. --- src/MacVim/MMAppController.m | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/MacVim/MMAppController.m b/src/MacVim/MMAppController.m index fb6ce2e732..bf306b0496 100644 --- a/src/MacVim/MMAppController.m +++ b/src/MacVim/MMAppController.m @@ -64,8 +64,6 @@ static NSTimeInterval MMRequestTimeout = 5; static NSTimeInterval MMReplyTimeout = 5; -static NSString *MMWebsiteString = @"https://macvim-dev.github.io/macvim/"; - // Latency (in s) between FS event occuring and being reported to MacVim. // Should be small so that MacVim is notified of changes to the ~/.vim // directory more or less immediately. @@ -1470,7 +1468,7 @@ - (IBAction)openWebsite:(id)sender { ASLogDebug(@"Open MacVim website"); [[NSWorkspace sharedWorkspace] openURL: - [NSURL URLWithString:MMWebsiteString]]; + [NSURL URLWithString:@"https://macvim.org/"]]; } - (IBAction)showWhatsNew:(id)sender