Skip to content

Commit dabc773

Browse files
authored
Merge pull request #1524 from ychin/fix-macvim-website-url-to-new-loc
Fix menu item "MacVim Website" to go to correct URL
2 parents 598b142 + 4edc89f commit dabc773

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/MacVim/MMAppController.m

+1-3
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,6 @@
6464
static NSTimeInterval MMRequestTimeout = 5;
6565
static NSTimeInterval MMReplyTimeout = 5;
6666

67-
static NSString *MMWebsiteString = @"https://macvim-dev.github.io/macvim/";
68-
6967
// Latency (in s) between FS event occuring and being reported to MacVim.
7068
// Should be small so that MacVim is notified of changes to the ~/.vim
7169
// directory more or less immediately.
@@ -1470,7 +1468,7 @@ - (IBAction)openWebsite:(id)sender
14701468
{
14711469
ASLogDebug(@"Open MacVim website");
14721470
[[NSWorkspace sharedWorkspace] openURL:
1473-
[NSURL URLWithString:MMWebsiteString]];
1471+
[NSURL URLWithString:@"https://macvim.org/"]];
14741472
}
14751473

14761474
- (IBAction)showWhatsNew:(id)sender

0 commit comments

Comments
 (0)