Skip to content

Commit

Permalink
Merge pull request #1524 from ychin/fix-macvim-website-url-to-new-loc
Browse files Browse the repository at this point in the history
Fix menu item "MacVim Website" to go to correct URL
  • Loading branch information
ychin authored Jan 9, 2025
2 parents 598b142 + 4edc89f commit dabc773
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 dabc773

Please sign in to comment.