1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-26 23:36:08 +03:00

User user's monospace font by default

This commit is contained in:
Tae Won Ha 2016-08-15 21:02:35 +02:00
parent 392d627b46
commit 53ee7612d1
No known key found for this signature in database
GPG Key ID: E40743465B5B8B44

View File

@ -21,7 +21,7 @@ public class NeoVimView: NSView, NSUserInterfaceValidations {
public static let minFontSize = CGFloat(4)
public static let maxFontSize = CGFloat(128)
public static let defaultFont = NSFont(name: "Menlo", size: 13)!
public static let defaultFont = NSFont.userFixedPitchFontOfSize(13)!
public let uuid = NSUUID().UUIDString
public weak var delegate: NeoVimViewDelegate?