mirror of
https://github.com/qvacua/vimr.git
synced 2024-12-01 01:32:04 +03:00
17 lines
347 B
Swift
17 lines
347 B
Swift
/**
|
|
* Tae Won Ha - http://taewon.de - @hataewon
|
|
* See LICENSE
|
|
*/
|
|
|
|
import Foundation
|
|
|
|
struct FontTrait: OptionSet {
|
|
|
|
let rawValue: UInt
|
|
|
|
static let italic = FontTrait(rawValue: 1 << 0)
|
|
static let bold = FontTrait(rawValue: 1 << 1)
|
|
static let underline = FontTrait(rawValue: 1 << 2)
|
|
static let undercurl = FontTrait(rawValue: 1 << 3)
|
|
}
|