We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91152d1 commit 201c6b7Copy full SHA for 201c6b7
1 file changed
src/MacVim/MMCoreTextView.m
@@ -1045,8 +1045,9 @@ - (void)batchDrawData:(NSData *)data
1045
NSDictionary *attrs = [NSDictionary dictionaryWithObjectsAndKeys:
1046
(id)font, kCTFontAttributeName,
1047
// 2 - full ligatures including rare
1048
+ // 1 - basic ligatures
1049
// 0 - no ligatures
- [NSNumber numberWithInteger: (useLigatures) ? 2 : 0], kCTLigatureAttributeName,
1050
+ [NSNumber numberWithInteger: (useLigatures) ? 1 : 0], kCTLigatureAttributeName,
1051
nil
1052
];
1053
0 commit comments