mirror of
https://github.com/qvacua/vimr.git
synced 2024-12-01 01:32:04 +03:00
14 lines
285 B
Swift
14 lines
285 B
Swift
/**
|
|
* Tae Won Ha - http://taewon.de - @hataewon
|
|
* See LICENSE
|
|
*/
|
|
|
|
import Cocoa
|
|
|
|
// Dummy NvimView class for FontUtils.
|
|
class NvimView {
|
|
static let defaultFont = NSFont.userFixedPitchFont(ofSize: 12)!
|
|
static let minFontSize = CGFloat(9)
|
|
static let maxFontSize = CGFloat(128)
|
|
}
|