Skip to content

Commit ab6cb33

Browse files
committed
Merge branch 'master' of git://github.com/b4winckler/macvim
Conflicts: src/MacVim/Info.plist
2 parents 03ecd0c + 04f77a4 commit ab6cb33

File tree

4 files changed

+12
-15
lines changed

4 files changed

+12
-15
lines changed

src/MacVim/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1232,7 +1232,7 @@
12321232
</dict>
12331233
</array>
12341234
<key>CFBundleVersion</key>
1235-
<string>20130815</string>
1235+
<string>20130911</string>
12361236
<key>NSMainNibFile</key>
12371237
<string>MainMenu</string>
12381238
<key>NSPrincipalClass</key>

src/MacVim/MMAppController.m

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1677,12 +1677,9 @@ - (void)handleXcodeModEvent:(NSAppleEventDescriptor *)event
16771677
- (void)handleGetURLEvent:(NSAppleEventDescriptor *)event
16781678
replyEvent:(NSAppleEventDescriptor *)reply
16791679
{
1680-
NSString *urlString = [[event paramDescriptorForKeyword:keyDirectObject]
1681-
stringValue];
1682-
// NOTE: URLWithString requires string to be percent escaped.
1683-
urlString = [urlString stringByAddingPercentEscapesUsingEncoding:
1684-
NSUTF8StringEncoding];
1685-
NSURL *url = [NSURL URLWithString:urlString];
1680+
NSURL *url = [NSURL URLWithString:[[event
1681+
paramDescriptorForKeyword:keyDirectObject]
1682+
stringValue]];
16861683

16871684
// We try to be compatible with TextMate's URL scheme here, as documented
16881685
// at http://blog.macromates.com/2007/the-textmate-url-scheme/ . Currently,

src/MacVim/MacVim.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -736,7 +736,7 @@
736736
buildSettings = {
737737
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
738738
COPY_PHASE_STRIP = NO;
739-
CURRENT_PROJECT_VERSION = 70;
739+
CURRENT_PROJECT_VERSION = 71;
740740
FRAMEWORK_SEARCH_PATHS = (
741741
"$(inherited)",
742742
"$(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1)",
@@ -769,7 +769,7 @@
769769
buildSettings = {
770770
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
771771
COPY_PHASE_STRIP = YES;
772-
CURRENT_PROJECT_VERSION = 70;
772+
CURRENT_PROJECT_VERSION = 71;
773773
FRAMEWORK_SEARCH_PATHS = (
774774
"$(inherited)",
775775
"$(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1)",

src/MacVim/gvimrc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -56,16 +56,16 @@ if !exists("macvim_skip_cmd_opt_movement")
5656
5757
no <D-Up> <C-Home>
5858
ino <D-Up> <C-Home>
59-
map <M-Up> {
60-
imap <M-Up> <C-o>{
59+
no <M-Up> {
60+
ino <M-Up> <C-o>{
6161
6262
no <D-Down> <C-End>
6363
ino <D-Down> <C-End>
64-
map <M-Down> }
65-
imap <M-Down> <C-o>}
64+
no <M-Down> }
65+
ino <M-Down> <C-o>}
6666
67-
imap <M-BS> <C-w>
68-
imap <D-BS> <C-u>
67+
ino <M-BS> <C-w>
68+
ino <D-BS> <C-u>
6969
endif " !exists("macvim_skip_cmd_opt_movement")
7070

7171

0 commit comments

Comments
 (0)