Skip to content

Commit

Permalink
Fix menu item "MacVim Website" to go to correct URL
Browse files Browse the repository at this point in the history
We are no longer using the default GitHub Pages URL and have a proper
domain, so use that.
  • Loading branch information
ychin committed Jan 9, 2025
1 parent 598b142 commit 4edc89f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/MacVim/MMAppController.m
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 4edc89f

Please sign in to comment.