Skip to content

Commit

Permalink
Renamed newVimWindow: action to newWindow:
Browse files Browse the repository at this point in the history
git-svn-id: http://macvim.googlecode.com/svn/trunk@240 96c4425d-ca35-0410-94e5-3396d5c13a8f
  • Loading branch information
b4winckler committed Sep 18, 2007
1 parent 97a9ddf commit f4f647e
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Actions.plist
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<string></string>
<key>miniaturizeAll:</key>
<string></string>
<key>newVimWindow:</key>
<key>newWindow:</key>
<string></string>
<key>orderFrontCharacterPalette:</key>
<string></string>
Expand Down
2 changes: 1 addition & 1 deletion English.lproj/MainMenu.nib/classes.nib

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified English.lproj/MainMenu.nib/keyedobjects.nib
Binary file not shown.
2 changes: 1 addition & 1 deletion MMAppController.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

- (void)removeVimController:(id)controller;
- (void)windowControllerWillOpen:(MMWindowController *)windowController;
- (IBAction)newVimWindow:(id)sender;
- (IBAction)newWindow:(id)sender;
- (IBAction)selectNextWindow:(id)sender;
- (IBAction)selectPreviousWindow:(id)sender;

Expand Down
6 changes: 3 additions & 3 deletions MMAppController.m
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ - (BOOL)applicationOpenUntitledFile:(NSApplication *)sender
{
//NSLog(@"%s NSapp=%@ theApp=%@", _cmd, NSApp, sender);

[self newVimWindow:self];
[self newWindow:self];
return YES;
}

Expand Down Expand Up @@ -347,7 +347,7 @@ - (void)windowControllerWillOpen:(MMWindowController *)windowController
}
}

- (IBAction)newVimWindow:(id)sender
- (IBAction)newWindow:(id)sender
{
NSMutableArray *args = [NSMutableArray arrayWithObject:@"-g"];
NSString *path = [[NSBundle mainBundle]
Expand Down Expand Up @@ -477,7 +477,7 @@ - (void)openSelection:(NSPasteboard *)pboard userData:(NSString *)userData
if (openSelectionString) [openSelectionString release];
openSelectionString = [[pboard stringForType:NSStringPboardType] copy];

[self newVimWindow:self];
[self newWindow:self];
}
}

Expand Down
2 changes: 1 addition & 1 deletion gvimrc
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ aunmenu File.-SEP4-
aunmenu File.Exit
aunmenu File.Save-Exit

an <silent> 10.290 File.New\ Window :action newVimWindow:<CR>
an <silent> 10.290 File.New\ Window :action newWindow:<CR>
an 10.295 File.New\ Tab :tabnew<CR>
an 10.328 File.-SEP0- <Nop>
an <silent> 10.330 File.Close\ Window<Tab>:qa :confirm qa<CR>
Expand Down

0 comments on commit f4f647e

Please sign in to comment.