Skip to content

Commit

Permalink
Default to using CoreText renderer
Browse files Browse the repository at this point in the history
The default renderer is too "loose" on OS X 10.8 whereas the CoreText
renderer looks the same across all platforms.  Furthermore, the CoreText
renderer is many times faster.

A downside to the CoreText renderer is that it does not support the text
input protocols properly, so e.g. three-finger tapping to show
dictionary results does not work.  It also does not show marked text as
it is being drawn if the "inline marked text" option is disabled.
  • Loading branch information
b4winckler committed Aug 19, 2012
1 parent 259f4de commit b8f6e70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MacVim/MMAppController.m
Expand Up @@ -207,7 +207,7 @@ + (void)initialize
[NSNumber numberWithInt:0], MMOpenInCurrentWindowKey, [NSNumber numberWithInt:0], MMOpenInCurrentWindowKey,
[NSNumber numberWithBool:NO], MMNoFontSubstitutionKey, [NSNumber numberWithBool:NO], MMNoFontSubstitutionKey,
[NSNumber numberWithBool:YES], MMLoginShellKey, [NSNumber numberWithBool:YES], MMLoginShellKey,
[NSNumber numberWithInt:0], MMRendererKey, [NSNumber numberWithInt:2], MMRendererKey,
[NSNumber numberWithInt:MMUntitledWindowAlways], [NSNumber numberWithInt:MMUntitledWindowAlways],
MMUntitledWindowKey, MMUntitledWindowKey,
[NSNumber numberWithBool:NO], MMTexturedWindowKey, [NSNumber numberWithBool:NO], MMTexturedWindowKey,
Expand Down

0 comments on commit b8f6e70

Please sign in to comment.